Changeset 922 for core/trunk/INSTALL.txt
- Timestamp:
- 06/30/07 22:00:31 (5 years ago)
- Files:
-
- 1 modified
-
core/trunk/INSTALL.txt (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
core/trunk/INSTALL.txt
r491 r922 21 21 22 22 Theoretically, 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. 23 a shell script and everything would be magically installed. Theoretically. 25 24 26 25 … … 34 33 sudo apt-get install build-essential flex 35 34 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/> 40 36 # On Windows, you'll almost definitely also want TortoiseSVN 41 37 # <http://tortoisesvn.tigris.org/> 42 38 sudo apt-get install subversion 43 39 44 ## PostgreSQL 8. 1.x<http://www.postgresql.org/>45 sudo apt-get install postgresql-8. 1 postgresql-dev postgresql-server-dev-8.140 ## PostgreSQL 8.2 <http://www.postgresql.org/> 41 sudo apt-get install postgresql-8.2 postgresql-server-dev-8.2 libpq-dev 46 42 47 43 ## 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 44 sudo apt-get install libgeos2c2a 45 46 ## Proj 4.4.9 47 sudo apt-get install proj 59 48 60 49 ## PostGIS 1.2.1 … … 69 58 -------------------------- 70 59 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 80 62 81 63 ## setuptools <http://peak.telecommunity.com/DevCenter/setuptools> 82 64 wget http://peak.telecommunity.com/dist/ez_setup.py 83 $HOME/bin/python2.5 ez_setup.py65 python2.5 ez_setup.py 84 66 85 67 ## Note: At this point you may be able to use setuptools to install the Python … … 97 79 98 80 ## SQLAlchemy (latest) <http://www.sqlalchemy.org/> 99 $HOME/bin/easy_install-2.5 -UZ SQLAlchemy81 easy_install-2.5 -UZ SQLAlchemy 100 82 101 83 ## zope.interface … … 103 85 tar xvzf zope.interface-3.3.0.tar.gz 104 86 cd zope.interface-3.3.0 105 $HOME/bin/python2.5 setup.py install87 python2.5 setup.py install 106 88 107 89 ## Python Cartographic Library (PCL) - Core 0.11.0 … … 111 93 tar xvzf PCL-0.11.0.tar.gz 112 94 cd PCL-0.11.0/PCL-Core 113 $HOME/bin/python2.5 setup.py install95 python2.5 setup.py install 114 96 115 97 … … 120 102 # Note: Not required for a dev environment--use Paste server 121 103 122 ## mod_p ython OR mod_proxy (this is an open question)104 ## mod_proxy (this is an open question) 123 105 124 106