Copyright 2021 Simon Quantrill, All Rights Reserved

Python 3 without the hassle

Sun 02 February 2014

Working in python

Using python and switching between versions is fairly easy here is how i did it

pip install virtualenv apt-get install python3 mkdir programming virtualenv -p /usr/bin/python3 programming/ cd programming/ . bin/activate

Now you can have a python 3 session without destroying your defualt version that most of the OS installation relies on!

on the top

Comments