Last active
April 7, 2024 09:14
-
-
Save ph4ge/97d2dbb6ca47434a8ee0e67aa47ad2c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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