Skip to content

Instantly share code, notes, and snippets.

@m-ueno
Last active January 18, 2017 13:52
Show Gist options
  • Save m-ueno/c0085f72cafe1313bd1031b7f9f0f195 to your computer and use it in GitHub Desktop.
Save m-ueno/c0085f72cafe1313bd1031b7f9f0f195 to your computer and use it in GitHub Desktop.

Creation of virtual environments

https://docs.python.org/3/library/venv.html

3.3-3.6

# Ubuntu
apt install python3.5-venv

pyvenv-3.5 bundle3
# or
python3 -m venv bundle3

source bundle3/bin/activate

3.6

python3 -m venv bundle3
source bundle3/bin/activate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment