Skip to content
Open
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
2 changes: 2 additions & 0 deletions Doc/tutorial/venv.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ For example:
'~/envs/tutorial-env/lib/python3.5/site-packages']
>>>
Note that the activated virtual environment manages the ``PYTHONHOME`` environment variable to find the specific version of Python that is requested. It does not alter the ``PYTHONPATH`` variable in any way. This may lead to unexpected results if the path includes references to code which is incompatible with the Python version the virtual environment is using. The best practice is to ``unset PYTHONPATH`` in bash or the equivalent for the shell you are using.

To deactivate a virtual environment, type::

deactivate
Expand Down
Loading