We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a961a commit b526bb0Copy full SHA for b526bb0
docs/dev/virtualenvs.rst
@@ -32,6 +32,14 @@ Basic Usage
32
This creates a copy of Python in whichever directory you ran the command in,
33
placing it in a folder named :file:`venv`.
34
35
+You can also use a Python interpreter of your choice.
36
+
37
+.. code-block:: console
38
39
+ $ virtualenv -p /usr/bin/python2.7 venv
40
41
+This will use the Python interpreter in :file:`/usr/bin/python2.7`
42
43
2. To begin using the virtual environment, it needs to be activated:
44
45
.. code-block:: console
0 commit comments