Merge pull request #482 from sonph/add_virtualenv

add virtualenv page
waldyrious/alt-syntax
Leandro Ostera 2015-12-30 21:08:15 +01:00
commit bb17b882fe
1 changed files with 16 additions and 0 deletions

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`