Last active
July 25, 2021 13:43
-
-
Save carlgieringer/51b09cae132b46eda033b73895520ce2 to your computer and use it in GitHub Desktop.
Python0to60in280Chars
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
#Python0to60in280Chars | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
brew install pyenv pyenv-virtualenv | |
echo 'eval "$(pyenv init --path)"; eval "$(pyenv virtualenv-init -)"' >> ~/.profile | |
source !$ | |
pyenv install 3.9.6 | |
pyenv virtualenv 3.9.6 my_proj | |
pyenv local my_proj | |
python |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment