Skip to content

Commit

Permalink
Minor stylistic edits to instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesHolste committed May 29, 2016
1 parent 43ba771 commit fca7f61
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ Activate your newly created virtual environment for qiita whenever you want to r
source activate qiita
```

(When you want to deactivate this environment, e.g. to return to a different project or back to your global python and pip packages, run `source deactivate`)

After activating your new environment, you should see this kind of output when you run `which python`, indicating that the `python` command now refers to the python binary in your new virtual environment, rather than a previous global default such as `/usr/bin/python`. For example, assuming you installed miniconda in `Users/your_username/`:
After activating your new environment, you should see this kind of output when you run `which python`, indicating that the `python` command now refers to the python binary in your new virtual environment, rather than a previous global default such as `/usr/bin/python`. For example, assuming you installed miniconda in `/Users/your_username/`:

```
$ which python
Expand All @@ -50,6 +48,12 @@ If you don't see this output, your `$PATH` variable was setup incorrectly or you

As long as you are in the active qiita environment, commands such as `pip install` or `python` will refer to and be contained within this virtual environment.

When you want to deactivate your current condo environment, e.g. to return to a different project or back to your global python and pip packages, run:

```bash
source deactivate
```


Install the non-python dependencies
-----------------------------------
Expand Down

0 comments on commit fca7f61

Please sign in to comment.