1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/common/virtualenv.md
2016-01-08 09:38:59 +01:00

15 lines
235 B
Markdown

# virtualenv
> Create virtual isolated Python environments.
- Create a new environment:
`virtualenv {{path/to/venv}}`
- Start (select) the environment:
`source {{path/to/venv}}/bin/activate`
- Stop the environment:
`deactivate`