Virtualenv: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 10: Line 10:
pip install virtualenv
pip install virtualenv
</syntaxhighlight>
</syntaxhighlight>
=Organizatorium=
* http://54.184.76.36/python-virtual-environment/

Revision as of 04:05, 11 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