Skip to content

Instantly share code, notes, and snippets.

@veggiemonk
Last active January 10, 2020 13:37
Show Gist options
  • Save veggiemonk/96b215c7293910d03efb94477b8344ef to your computer and use it in GitHub Desktop.
Save veggiemonk/96b215c7293910d03efb94477b8344ef to your computer and use it in GitHub Desktop.
Python 3 on Mac Osx
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