mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-18 06:49:49 +00:00
Update cheatsheets
This commit is contained in:
25
pyenv-virtualenv
Normal file
25
pyenv-virtualenv
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# pyenv virtualenv
|
||||
|
||||
> Create virtual environments based on one's installed Python distributions.
|
||||
> More information: <https://github.com/pyenv/pyenv-virtualenv>.
|
||||
|
||||
- Create a new Python 3.6.6 virtual environment:
|
||||
|
||||
`pyenv virtualenv {{3.6.6}} {{virtualenv_name}}`
|
||||
|
||||
- List all existing virtual environments:
|
||||
|
||||
`pyenv virtualenvs`
|
||||
|
||||
- Activate a virtual environment:
|
||||
|
||||
`pyenv activate {{virtualenv_name}}`
|
||||
|
||||
- Deactivate the virtual environment:
|
||||
|
||||
`pyenv deactivate`
|
||||
Reference in New Issue
Block a user