Skip to content

Instantly share code, notes, and snippets.

@ph4ge
Last active April 7, 2024 09:14
Show Gist options
  • Save ph4ge/97d2dbb6ca47434a8ee0e67aa47ad2c7 to your computer and use it in GitHub Desktop.
Save ph4ge/97d2dbb6ca47434a8ee0e67aa47ad2c7 to your computer and use it in GitHub Desktop.
### python2
mkdir -p venv/py2-00/
sudo apt-get install virtualenv -y
virtualenv -p python2 venv/py2-00/
### python3
mkdir -p venv/py3-00/
sudo apt-get install python3-venv -y
python3 -m venv venv/py3-00/
### pypy3
mkdir -p venv/pypy3
sudo apt-get install pypy3 -y
pypy3 -m venv venv/pypy3/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment