1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/virtualenv.md
2025-04-25 05:54:18 +03:00

24 lines
529 B
Markdown

# 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`