#Install PostgreSQL on Windows A simple guide on how to install PostgreSQL on your local Windows machine.
NOTE: This guide has not been thoroughly tested. If you find improvements, please submit them to us.
- Visit the PostgreSQL Windows download site: here
- Download the installer from EnterpriseDB for all supported versions.
- Select the the most recent Version 9.4.X (it's currently 9.4.5) and your Windows system: 32-bit systems select "Win x86-32" 64-bit systems select "Win x86-64"
- After download completes, run the installer and select all default options.
Now, test postgresql
with:
> createdb
> psql
You should see something like:
psql (9.4.5)
Type "help" for help.
jmitch=#
Where jmitch
would be your username.
As an alternative, you can read Django Docs for information on getting postgresql
installed.
Now you have PostgreSQL installed.