1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 21:17:56 +01:00
tldr/pages/common/virtualenv.md

16 lines
235 B
Markdown
Raw Normal View History

2015-12-30 06:38:43 +01:00
# virtualenv
> Create virtual isolated Python environments.
2015-12-30 06:38:43 +01:00
- Create a new environment:
2015-12-30 06:38:43 +01:00
`virtualenv {{path/to/venv}}`
- Start (select) the environment:
2015-12-30 06:38:43 +01:00
`source {{path/to/venv}}/bin/activate`
- Stop the environment:
2015-12-30 06:38:43 +01:00
`deactivate`