Django: Difference between revisions
From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs) mNo edit summary |
Brian Wilson (talk | contribs) |
||
Line 3: | Line 3: | ||
== Get source == | == Get source == | ||
Now a github project. | Now a github project. Ignore subversion instructions. | ||
Download / build / install into /usr/local | Download / build / install into /usr/local | ||
sudo apt-get install python-psycopg2 | |||
cd ~/src | cd ~/src | ||
git clone https://github.com/django/django.git | git clone https://github.com/django/django.git | ||
Line 13: | Line 14: | ||
test | test | ||
django-admin.py | django-admin.py | ||
== Initial tests == | |||
My initial testing will be with sqlite, then I will move on to postgresql to get PostGIS going. |
Revision as of 02:20, 27 April 2013
Working from the Packt Pubs Django book.
Get source
Now a github project. Ignore subversion instructions. Download / build / install into /usr/local
sudo apt-get install python-psycopg2 cd ~/src git clone https://github.com/django/django.git cd django sudo python setup.py install
test
django-admin.py
Initial tests
My initial testing will be with sqlite, then I will move on to postgresql to get PostGIS going.