mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-20 16:50:50 +00:00
Update cheatsheets
This commit is contained in:
29
virtualenv
Normal file
29
virtualenv
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# virtualenv
|
||||
|
||||
> Create virtual isolated Python environments.
|
||||
> More information: <https://virtualenv.pypa.io/>.
|
||||
|
||||
- Create a new environment:
|
||||
|
||||
`virtualenv {{path/to/venv}}`
|
||||
|
||||
- Customize the prompt prefix:
|
||||
|
||||
`virtualenv --prompt={{prompt_prefix}} {{path/to/venv}}`
|
||||
|
||||
- Use a different version of Python with virtualenv:
|
||||
|
||||
`virtualenv --python={{path/to/pythonbin}} {{path/to/venv}}`
|
||||
|
||||
- Start (select) the environment:
|
||||
|
||||
`source {{path/to/venv}}/bin/activate`
|
||||
|
||||
- Stop the environment:
|
||||
|
||||
`deactivate`
|
||||
Reference in New Issue
Block a user