I'm new to Python/Django so forgive me if this is a simple problem to solve...
I'm trying to set up a PostgreSQL database for my Django project. I have downloaded PostgreSQL 9.2 from here http://www.postgresql.org/download/macosx/ and gone through the installation process. I've been following a wiki article which said to update my system path to /Library/PostgreSQL/9.2/bin, which I have. When I type 'nano ~/.bash_profile' into Terminal I see this 'PATH ='Library/PostgreSQL/9.2/bin' which I believe means I have updated my system path correctly. However, when I then try to run the command 'createdb', I see this...
-bash: createdb: command not found
I believe I have installed PostgreSQL correctly so I'm not sure how to get around this.
Any help would be very much appreciated!
Thank you
Jess