Changes between Version 23 and Version 24 of GeoDjangoUbuntuInstall
- Timestamp:
- Sep 24, 2008, 10:49:49 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GeoDjangoUbuntuInstall
v23 v24 23 23 wget http://download.osgeo.org/geos/geos-3.0.0.tar.bz2 # The version in the Repositories is currently not new enough for GeoDjango 24 24 wget http://download.osgeo.org/gdal/gdal-1.5.2.tar.gz # The version in the Repositories is currently not new enough for GeoDjango 25 wget http://download.osgeo.org/proj/proj-4.6. 0.tar.gz # The version in the Repositories likely will not properly build the proj datum shifting files25 wget http://download.osgeo.org/proj/proj-4.6.1.tar.gz # The version in the Repositories likely will not properly build the proj datum shifting files 26 26 tar xjf geos-3.0.0.tar.bz2 27 27 cd geos-3.0.0 … … 30 30 sudo make install 31 31 cd .. 32 tar xzf proj-4.6. 0.tar.gz33 wget ftp://ftp.remotesensing.org/proj/proj-datumgrid-1. 3.tar.gz34 cd proj-4.6. 0/nad35 tar xzf ../../proj-datumgrid-1. 3.tar.gz32 tar xzf proj-4.6.1.tar.gz 33 wget ftp://ftp.remotesensing.org/proj/proj-datumgrid-1.4.tar.gz 34 cd proj-4.6.1/nad 35 tar xzf ../../proj-datumgrid-1.4.tar.gz 36 36 cd .. 37 37 ./configure … … 49 49 }}} 50 50 51 Create your PostGIS enabled Post GreSQL db51 Create your PostGIS enabled PostgreSQL db 52 52 {{{ 53 53 sudo su postgres … … 77 77 wget http://www.djangoproject.com/download/1.0/tarball/ 78 78 wget http://download.osgeo.org/gdal/gdal-1.5.2.tar.gz 79 wget http://download.osgeo.org/geos/geos-3.0.0.tar.bz2 79 wget http://download.osgeo.org/geos/geos-3.0.0.tar.bz2 80 wget http://download.osgeo.org/proj/proj-4.6.1.tar.gz 81 wget http://download.osgeo.org/proj/proj-datumgrid-1.4.tar.gz 82 80 83 }}} 81 84 … … 89 92 {{{ 90 93 sudo pico /etc/postgresql/8.3/main/pg_hba.conf #Alternatively use gedit or a text editor of your choice 94 91 95 # change ident sameuser to trust - WARNING SECURITY RISK 92 96 # comment out this line to allow, for instance, to django/psycopg2 to connect without password … … 110 114 make 111 115 sudo make install 116 117 #in the proj-4.6.1 directory 118 cd proj-4.6.1/nad 119 tar xzf ../../proj-datumgrid-1.4.tar.gz 120 cd .. 121 ./configure 122 make 123 sudo make install 112 124 113 125 #in the gdal-1.5.2 directory