Skip to content

Commit

Permalink
Instructions to activate environment for windows
Browse files Browse the repository at this point in the history
For windows user is not trivial to figure out the correct command to activate and deactivate an environment, you need search on the web to find the correct answer.
  • Loading branch information
jrovegno committed Apr 12, 2015
1 parent 48c4f26 commit 0cf10c9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,15 @@ default, you would run
This creates an environment called ``numpy16`` with the latest version of
the IPython notebook, NumPy 1.6, and their dependencies.

We can now activate this environment. On Linux and Mac OS X, use
We can now activate this environment, use

.. code-block:: bash
# On Linux and Mac OS X
$ source activate numpy16
# On Windows
> activate numpy16
This puts the bin directory of the ``numpy16`` environment in the front of the
``PATH``, and sets it as the default environment for all subsequent conda commands.
Expand All @@ -84,7 +88,11 @@ To go back to the root environment, use

.. code-block:: bash
# On Linux and Mac OS X
$ source deactivate
# On Windows
> deactivate
Building Your Own Packages
Expand Down

0 comments on commit 0cf10c9

Please sign in to comment.