Tutorial used to create Pinax Project: https://github.com/pinax/pinax-project-social#readme
In the previous Tutorial 7 (Part 2), we see it would install a django 1.3.1. Here we will use another tutorial to install pinax from a template and have django 1.4.3 (latest).
Steps Taken:
Step 0: install django 1.4.3 using easy_install ( see tutorial 7 Part 0 )
Step 1: use ( django-admin.py startproject –template= … ) to install Pinax template from GitHub
Step 2: update using ( pip install -r requirements.txt )
Step 3: ( python manage.py syncdb )
Step 4: ( python manage.py runserver )
Tada the django version used is now 1.4.3
Advertisements