Skip to content

Instantly share code, notes, and snippets.

@Deano1406
Created August 15, 2018 16:31
Show Gist options
  • Save Deano1406/c5eeb72a3a91fb62d0828589929a48db to your computer and use it in GitHub Desktop.
Save Deano1406/c5eeb72a3a91fb62d0828589929a48db to your computer and use it in GitHub Desktop.
Getting the right version of python (e.g. 3.7) in your bash environment
unlink /usr/local/bin/python
ln -s /usr/local/bin/python3.7 /usr/local/bin/python
@Deano1406
Copy link
Author

Setting python 3.x as the default

A quick change to the symbolic links will make this change. I found a number of issuers with virtualenv and virtualenvwrapper until I made this change.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment