Jaini Naveen
Jaini Naveen

Reputation: 165

What is the process to upgrade from Django 1.3 to 1.4 (or any other version)?

What is the process to upgrade from Django 1.3 to 1.4 (or any other version)?

Upvotes: 2

Views: 1279

Answers (1)

Jaini Naveen
Jaini Naveen

Reputation: 165

I thought it may be difficult to upgrade the django from 1.3.1 to 1.4.1 (latest).

It is so simple for this you should have pip to make it easy Take a backup copy of your resources

If you don't have pip

$ sudo apt-get install python-pip
$ pip install -U django  # it will install/upgrade to latest version

or you need to upgrade to particular version

pip install --upgrade django==1.4.1

after the installation just confirm like this

$ python
>>> import django
>>> django.get_version()
'1.4.1'

Upvotes: 1

Related Questions