HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

virtualenv — Create virtual isolated Python environments. More information: <https://virtualenv.pypa.io/en/latest

Submitted by: @import:tldr-pages··
0
Viewed 0 times
virtualvirtualenvcreatecommandenvironmentspythoncliisolated

Problem

How to use the virtualenv command: Create virtual isolated Python environments. More information: <https://virtualenv.pypa.io/en/latest/cli_interface.html>.

Solution

virtualenv — Create virtual isolated Python environments. More information: <https://virtualenv.pypa.io/en/latest/cli_interface.html>.

Create a new environment:
virtualenv {{path/to/venv}}


Customize the prompt prefix:
virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}


Use a different version of Python with virtualenv:
virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}


Start (select) the environment:
source {{path/to/venv}}/bin/activate


Stop the environment:
deactivate

Code Snippets

Create a new environment

virtualenv {{path/to/venv}}

Customize the prompt prefix

virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}

Use a different version of Python with virtualenv

virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}

Start (select) the environment

source {{path/to/venv}}/bin/activate

Stop the environment

deactivate

Context

tldr-pages: common/virtualenv

Revisions (0)

No revisions yet.