Virtualenv: Difference between revisions

From NovaOrdis Knowledge Base
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....")
 
 
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:
* https://virtualenv.pypa.io/en/latest/
* https://virtualenv.pypa.io/en/latest/
=Internal=
=Internal=
* [[Python]]
* [[Python_Virtual_Environment#Overview|Python Virtual Environment]]
 
=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_Virtual_Environment#Overview|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>
=Operations=
<syntaxhighlight lang='bash'>
virtualenv -p python3.8 venv
</syntaxhighlight>
 
=Organizatorium=
* http://54.184.76.36/python-virtual-environment/

Latest revision as of 17:20, 2 May 2023

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

Organizatorium