1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 14:35:42 +02:00

Merge pull request #482 from sonph/add_virtualenv

add virtualenv page
This commit is contained in:
Leandro Ostera 2015-12-30 21:08:15 +01:00
commit bb17b882fe

View file

@ -0,0 +1,16 @@
# 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`