Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
10
rated 0 times [  10] [ 0]  / answers: 1 / hits: 29160  / 1 Year ago, mon, december 26, 2022, 4:59:05

Appears to be installing Django 1.3.1 in Ubuntu 12.04. How can I get Django 1.6 installed?



sudo apt-get install python-django

More From » django

 Answers
7

First remove the previously installed django 1.3.1 version by deleting the django folder inside /usr/local/lib/pythonx.x/dist-packages(x.x denotes the version of python).Then follow the below steps,




  • Download Django 1.6 from here.


  • Open the terminal and move to the directory where you placed the Django 1.6.



    cd path/to/driectory/which/contains/django1.6.tar.gz


  • Extract the django1.6.tar.gz by running the below command.



    tar -xzvf Django-1.6.tar.gz


  • Move to the Django-1.6 directory



    cd Django-1.6


  • Run the below command to install Django-1.6



    sudo python setup.py install



[#28492] Monday, December 26, 2022, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
suspengn

Total Points: 477
Total Questions: 104
Total Answers: 100

Location: Rwanda
Member since Thu, Feb 10, 2022
2 Years ago
suspengn questions
;