Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/dev/virtualenvs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ Basic Usage
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 a Python interpreter of your choice.

.. code-block:: console

$ virtualenv -p /usr/bin/python2.7 venv

This will use the Python interpreter in :file:`/usr/bin/python2.7`

2. To begin using the virtual environment, it needs to be activated:

.. code-block:: console
Expand Down