mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 20:55:34 +02:00
commit
bb17b882fe
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…
Add table
Reference in a new issue