Virtualenv: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://virtualenv.pypa.io/en/latest/ =Internal= * Python =Overview= <code>virtualenv</code> is a tool to create isolated Python environments. Since Python 3....") |
|||
Line 5: | Line 5: | ||
=Overview= | =Overview= | ||
<code>virtualenv</code> 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 [[Python Module venv|venv]] module. | <code>virtualenv</code> 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 [[Python Module venv|venv]] module. | ||
=Installation= | |||
<syntaxhighlight lang='bash'> | |||
pip install virtualenv | |||
</syntaxhighlight> |
Revision as of 20:29, 7 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