Virtualenv: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 4: Line 4:
* [[Python]]
* [[Python]]
=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 [[Python_Language#Environment|environments]]. Since Python 3.3, a subset of it has been integrated into the standard library under the [[Python Module venv|venv]] module.
 
=Installation=
=Installation=
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
pip install virtualenv
pip install virtualenv
</syntaxhighlight>
</syntaxhighlight>

Revision as of 20:31, 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