Last active
January 10, 2020 13:37
-
-
Save veggiemonk/96b215c7293910d03efb94477b8344ef to your computer and use it in GitHub Desktop.
Python 3 on Mac Osx
This file contains hidden or 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
brew install python # default is version 3.X | |
cat << EOF >> ~/.zshrc | |
alias python="python3" | |
alias p="python3" | |
alias pip="pip3" | |
alias path='echo -e ${PATH//:/\\n}' | |
export PATH="$(python -m site --user-base)/bin":$PATH | |
EOF | |
pip install virtualenv | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment