Virtualenv: Difference between revisions
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
pip install virtualenv | pip install virtualenv | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=Operations= | |||
<syntaxhighlight lang='bash'> | |||
virtualenv -p python3.8 venv | |||
</syntaxhighlight> | |||
=Organizatorium= | =Organizatorium= | ||
* http://54.184.76.36/python-virtual-environment/ | * http://54.184.76.36/python-virtual-environment/ |
Revision as of 01:52, 19 January 2022
External
Internal
Overview
virtualenv
is a tool to create isolated Python environments. Since Python 3.3, a subset of it has been integrated into the standard library under the venv module.
Installation
pip install virtualenv
Operations
virtualenv -p python3.8 venv