Currently, when I type "python" at the terminal I get v2.6 which is all fine and dandy but how can I set it to use v3.1 instead? Is there a "path" variable out there somewhere that I can change like windows?
EDIT: I already have python3 installed and up and running. I just want to know how to set it as the shells default python version.
Best Answer
Use python-virtualenv to create a virtual python environment.
Select the version of Python to be created in the virtual environment:
To manage multiple virtual Python environments, install the virtualenvwrapper extension.
Why virtualenv?