Virtualenv: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:
=Internal=
=Internal=
* [[Python]]
* [[Python]]
* [[Python_Language#Virtual_Environment|Pyhton Language]]
=Overview=
=Overview=
<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.
<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.

Revision as of 07:10, 12 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

Organizatorium