mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-30 02:17:56 +01:00
add virtualenv page
This commit is contained in:
parent
dcfba64c01
commit
9f3b9aa636
1 changed files with 16 additions and 0 deletions
16
pages/common/virtualenv.md
Normal file
16
pages/common/virtualenv.md
Normal 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`
|
||||
|
Loading…
Reference in a new issue