mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-19 03:56:16 +00:00
title, homepage, tagline
| title | homepage | tagline |
|---|---|---|
| pyenv | https://github.com/pyenv/pyenv | pyenv: Simple Python Version Management |
Updating pyenv
pyenv update
Cheat Sheet
List available python versions:
pyenv install -l
Install Python versions:
pyenv install <version>
pyenv rehash
pyenv versions
List installed versions:
pyenv versions
pyenv local
Sets a local application-specific Python version:
pyenv local 2.7.6
Unset the local version:
pyenv local --unset
List existing virtualenvs
pyenv virtualenvs
Create virtualenv
From current version with name "venv35":
pyenv virtualenv venv35
From version 2.7.10 with name "venv27":
pyenv virtualenv 2.7.10
venv27
Activate/deactivate
pyenv activate <name>
pyenv deactivate
Delete existing virtualenv
pyenv uninstall venv27