Re-instated references to setuptools

This commit is contained in:
Adam Nelson
2016-03-31 09:37:57 -04:00
parent ef3cc7eec2
commit 328a261c4f
3 changed files with 15 additions and 11 deletions
+3 -3
View File
@@ -44,17 +44,17 @@ This creates a copy of Python in whichever directory you ran the command in,
placing it in a folder named :file:`venv`.
You can also use the Python interpreter of your choice (like
:file:`/usr/local/bin/python3`).
:file:`/usr/bin/python2.7`).
.. code-block:: console
$ virtualenv -p /usr/local/bin/python3 venv
$ virtualenv -p /usr/bin/python2.7 venv
or change the interpreter globally with an env variable in ``~/.bashrc``:
.. code-block:: console
$ export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
$ export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python2.7
2. To begin using the virtual environment, it needs to be activated: