Changes between Version 19 and Version 20 of GeoDjangoUbuntuInstall


Ignore:
Timestamp:
Sep 3, 2008, 2:45:16 PM (16 years ago)
Author:
robyg
Comment:

beta to RC1, minor fixes

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjangoUbuntuInstall

    v19 v20  
    1616#Download and Install the latest version of Django
    1717cd ~
    18 wget http://www.djangoproject.com/download/1.0-beta-1/tarball/
    19 tar xzvf Django-1.0-beta_2.tar.gz
    20 sudo python ~/Django-1.0-beta_1/setup.py install  #Enter password to give root privileges as prompted throughout the installation
     18wget http://www.djangoproject.com/download/1.0-rc_1/tarball/
     19tar xzvf Django-1.0-rc_1.tar.gz
     20sudo python ~/Django-1.0-rc_1/setup.py install  #Enter password to give root privileges as prompted throughout the installation
    2121#Install Apache2, PsycoPg2, PostGreSQL, PostGIS, build-essential [to be able to compile libraries], and Mod_Python
    2222sudo apt-get install apache2 python-psycopg2 postgresql build-essential libapache2-mod-python postgresql-8.3-postgis #Press 'y' to confirm download
     
    6565{{{
    6666apt-get install apache2 python-psycopg2 postgresql build-essential libapache2-mod-python postgresql-8.3-postgis 
    67 wget http://www.djangoproject.com/download/1.0-beta-2/tarball/
     67wget http://www.djangoproject.com/download/1.0-rc_1/tarball/
    6868wget http://download.osgeo.org/gdal/gdal-1.5.2.tar.gz
    6969wget http://download.osgeo.org/geos/geos-3.0.0.tar.bz2 
     
    105105    sudo make install       
    106106
    107     sudo cp /home/[Your Username]/geos-3.0.0/capi/libs/* /usr/lib/
     107    sudo cp ~/Desktop/geos-3.0.0/capi/libs/* /usr/lib/
    108108    sudo cp /usr/share/gdal/gcs.csv /usr/local/share/
    109109}}}
     
    166166Check out [http://mapserver.gis.umn.edu/ MapServer], [http://mapnik.org/ Mapnik], and [http://openlayers.org/ OpenLayers], open source mapping applications recommended for use with !GeoDjango.
    167167
    168 Install these and a few other helpful utilities with:
     168Install these using Synaptic or the command:
    169169{{{
    170170sudo apt-get install cgi-mapserver python-gdal python-mapscript
Back to Top