This is a step by step tip about how to install Django with PostgreSQL on Windows. The links below point directly to the downloads, so the whole procedure should be extremely fast and easy.
Run:
python ez_setup.py -U setuptools
within the Django directory and this will install the latest setuptools for you. You can now go to step 7.
Alternatively if you wish to install setuptools and Django in one step, open in your favorite editor, ez_setup.py located within the Django folder that you just uncompressed,
and replace the line:
DEFAULT_VERSION = “0.6c1”
with
DEFAULT_VERSION = “0.6c3”
Now, if the Windows box you’re using has an Internet connection, you’re settle; otherwise just download this file manually into the Django folder.
NOTE: While it is not recommended, if you wish to use Psycopg2 for some reason, you can skip steps 3 and 4, and use this installer instead.
Then you will need to specify in settings.py: DATABASE_ENGINE = ‘postgresql_psycopg2’ rather than ’postgresql’.
No related posts.
If you enjoyed this post, then make sure you subscribe to my Newsletter and/or Feed.
This page renders fine in Firefox, but is duplicated and overlayed on top of itself when viewed in Safari. Is this a Safari bug, or something non-standard with the page that Firefox handles?
I attempted the install of Django following the Django documentation at Djangoprojec but I couldn’t have it work.
Thanks, you just saved me an hour. Why can’t the Django documentation have this information in it?
what webserver would you use with this setup?
You’d use the one that comes with Django for development and lighttpd or apache for production
Fantastic! – everything worked as advertised except for the typos I made along the way.
Nicely done, Antonio!
http://www.powerslacker.com