Virtualenv: Difference between revisions
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
* https://virtualenv.pypa.io/en/latest/ | * https://virtualenv.pypa.io/en/latest/ | ||
=Internal= | =Internal= | ||
* [[ | * [[Python_Virtual_Environment#Overview|Python Virtual Environment]] | ||
=Overview= | =Overview= |
Revision as of 17:19, 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