10.07.2014

Easy install Python 3.4, pip and Django on Ubuntu,

I strongly recommend to use virtualenv if you want to use python over 3.0.

 

Install Python 3.4

sudo apt-get install python-software-properties

sudo apt-add-repository ppa:fkrull/deadsnakes

sudo apt-get update

sudo apt-get install python3.4

 if you did log-in root, do not write 'sudo'.

After that,
You can run python3.4 through command.

$ python3.4

 or check version

$ python3.4 --version


Install PIP

The PyPA recommended tool for installing and managing Python packages.

sudo apt-get install python3-pip


Install Django

 

pip3 install Django==1.7




No comments: