Released Versions

If you want to use the zip, setup, and setup source files directly they are available:

Unreleased PostGIS Versions

If you are more adventurous, and risk-seeking you can partake in our experimental windows binaries of PostGIS built automatically by Winnie whenever there is a change in any of the PostGIS 2.0 and 2.1 branches. These are especially useful for testing out new features or if you are badly in need of a bug fix that has not been released yet.

If you don’t want to risk messing up an existing windows install or aren’t allowed to write to the registry , we’d suggest using the companion PostgreSQL EDB binaries-only binaries which don’t require installation. Setup is detailed in Starting PostgreSQL in windows without install.

Windows: Winnie Bot PostGIS and pgRouting Experimental Builds

PostGIS 2.1.0beta2

Packaged


PostGIS 2.0.4SVN

Packaged


PostGIS ..

pgRouting Package 2.0.0dev

Only for PostgreSQL 9.1 (64-bit), 9.2 (32-bit /64-bit), 9.3beta1 (32-bit / 64-bit) refer to getting started guide for more details

Will work with PostGIS 2.0 or 2.1


Installing Experimental Binaries

Enabling PostGIS

PostGIS is an optional extension that must be enabled in EVERY database you want to use it in. If you are running PostgreSQL 9.1+ you can use:

CREATE EXTENSION postgis;
CREATE EXTENSION postgis_topology;
CREATE EXTENSION postgis_tiger_geocoder;
 

postgis_tiger_geocoder extension file option only available for PostGIS 2.1+.

If you are running PostgreSQL 9.2 or higher and have installed PostGIS 2.0 or 2.1 (you can download and extract into your PostgreSQL install folder the pgRouting 2.0dev package and do)

CREATE EXTENSION pgrouting;
 

See the install section for more guidance.