Changeset 922 for core/trunk/INSTALL.txt

Show
Ignore:
Timestamp:
06/30/07 22:00:31 (5 years ago)
Author:
bycycle
Message:

Update core INSTALL doc for Ubuntu 7.04

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • core/trunk/INSTALL.txt

    r491 r922  
    2121 
    2222Theoretically, assuming you are on Ubuntu, this whole section could be run as  
    23 a shell script and everything would be magically installed. However, that is  
    24 unlikely to work at this time. 
     23a shell script and everything would be magically installed. Theoretically. 
    2524 
    2625 
     
    3433sudo apt-get install build-essential flex 
    3534 
    36 ## If you're going to install Python from source, you'll need this: 
    37 sudo apt-get install zlib1g-dev 
    38  
    39 ## Subversion <http://subversion.tigris.org/> 
     35## Subversion 1.4 <http://subversion.tigris.org/> 
    4036# On Windows, you'll almost definitely also want TortoiseSVN 
    4137# <http://tortoisesvn.tigris.org/> 
    4238sudo apt-get install subversion 
    4339 
    44 ## PostgreSQL 8.1.x <http://www.postgresql.org/> 
    45 sudo apt-get install postgresql-8.1 postgresql-dev postgresql-server-dev-8.1 
     40## PostgreSQL 8.2 <http://www.postgresql.org/> 
     41sudo apt-get install postgresql-8.2 postgresql-server-dev-8.2 libpq-dev 
    4642 
    4743## GEOS 2.2.3 
    48 # I can't remember why, but the Ubuntu package won't work 
    49 wget http://geos.refractions.net/geos-2.2.3.tar.bz2 
    50 tar xvjf geos-2.2.3.tar.bz2 
    51 cd geos-2.2.3 
    52 ./configure && make && sudo make install 
    53  
    54 ## Proj 4.5.0 
    55 wget ftp://ftp.remotesensing.org/proj/proj-4.5.0.tar.gz 
    56 tar xvzf proj-4.5.0.tar.gz 
    57 cd proj-4.5.0 
    58 ./configure && make && sudo make install 
     44sudo apt-get install libgeos2c2a 
     45 
     46## Proj 4.4.9 
     47sudo apt-get install proj 
    5948 
    6049## PostGIS 1.2.1 
     
    6958-------------------------- 
    7059 
    71 ## Python 2.5.x <http://www.python.org/> 
    72 # I like a nice, clean, private install in $HOME 
    73 # All the commands below assume Python is installed in $HOME 
    74 # Adjust as necessary 
    75 wget http://www.python.org/ftp/python/2.5/Python-2.5.tar.bz2 
    76 tar xvjf Python-2.5.tar.bz2 
    77 cd Python-2.5 
    78 ./configure --prefix=$HOME 
    79 make && make install 
     60## Python 2.5 <http://python.org> 
     61# On Ubuntu 7.04, version 2.5 is installed by default 
    8062 
    8163## setuptools <http://peak.telecommunity.com/DevCenter/setuptools> 
    8264wget http://peak.telecommunity.com/dist/ez_setup.py 
    83 $HOME/bin/python2.5 ez_setup.py 
     65python2.5 ez_setup.py 
    8466 
    8567## Note: At this point you may be able to use setuptools to install the Python 
     
    9779 
    9880## SQLAlchemy (latest) <http://www.sqlalchemy.org/> 
    99 $HOME/bin/easy_install-2.5 -UZ SQLAlchemy 
     81easy_install-2.5 -UZ SQLAlchemy 
    10082 
    10183## zope.interface 
     
    10385tar xvzf zope.interface-3.3.0.tar.gz 
    10486cd zope.interface-3.3.0 
    105 $HOME/bin/python2.5 setup.py install 
     87python2.5 setup.py install 
    10688 
    10789## Python Cartographic Library (PCL) - Core 0.11.0 
     
    11193tar xvzf PCL-0.11.0.tar.gz 
    11294cd PCL-0.11.0/PCL-Core 
    113 $HOME/bin/python2.5 setup.py install 
     95python2.5 setup.py install 
    11496 
    11597 
     
    120102# Note: Not required for a dev environment--use Paste server 
    121103 
    122 ## mod_python OR mod_proxy (this is an open question) 
     104## mod_proxy (this is an open question) 
    123105 
    124106