Updated Build notes specific to older versions of Ubuntu (markdown)
parent
78a800d159
commit
22e7a87081
1 changed files with 67 additions and 41 deletions
|
@ -19,8 +19,9 @@ Karmic has Mapnik packages for 0.7.0, so you can either install Mapnik from pack
|
||||||
## Install from packages
|
## Install from packages
|
||||||
|
|
||||||
|
|
||||||
#!sh
|
```
|
||||||
sudo apt-get install python-cairo libmapnik0.7 mapnik-utils python-mapnik
|
sudo apt-get install python-cairo libmapnik0.7 mapnik-utils python-mapnik
|
||||||
|
```
|
||||||
|
|
||||||
*Note:* then you will likely want to install Postgres 8.4 + PostGIS 1.4 (see below)
|
*Note:* then you will likely want to install Postgres 8.4 + PostGIS 1.4 (see below)
|
||||||
|
|
||||||
|
@ -28,7 +29,7 @@ Karmic has Mapnik packages for 0.7.0, so you can either install Mapnik from pack
|
||||||
|
|
||||||
### Set up
|
### Set up
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
# get a build environment going...
|
# get a build environment going...
|
||||||
sudo apt-get install -y g++ cpp \
|
sudo apt-get install -y g++ cpp \
|
||||||
libboost1.40-dev libboost-filesystem1.40-dev \
|
libboost1.40-dev libboost-filesystem1.40-dev \
|
||||||
|
@ -54,32 +55,34 @@ Karmic has Mapnik packages for 0.7.0, so you can either install Mapnik from pack
|
||||||
sudo apt-get install libgdal1-dev python-gdal \
|
sudo apt-get install libgdal1-dev python-gdal \
|
||||||
postgresql-8.4 postgresql-server-dev-8.4 postgresql-contrib-8.4 postgresql-8.4-postgis \
|
postgresql-8.4 postgresql-server-dev-8.4 postgresql-contrib-8.4 postgresql-8.4-postgis \
|
||||||
libsqlite3-dev
|
libsqlite3-dev
|
||||||
|
```
|
||||||
|
|
||||||
### Then compile and install Mapnik
|
### Then compile and install Mapnik
|
||||||
|
|
||||||
For instructions on compiling trunk (aka Mapnik2) see: wiki:Mapnik2
|
For instructions on compiling trunk (aka Mapnik2) see: wiki:Mapnik2
|
||||||
|
|
||||||
|
```sh
|
||||||
#!sh
|
|
||||||
svn co http://svn.mapnik.org/tags/release-0.7.1/ mapnik
|
svn co http://svn.mapnik.org/tags/release-0.7.1/ mapnik
|
||||||
cd mapnik
|
cd mapnik
|
||||||
python scons/scons.py configure INPUT_PLUGINS=all OPTIMIZATION=3 SYSTEM_FONTS=/usr/share/fonts/
|
python scons/scons.py configure INPUT_PLUGINS=all OPTIMIZATION=3 SYSTEM_FONTS=/usr/share/fonts/
|
||||||
python scons/scons.py
|
python scons/scons.py
|
||||||
sudo python scons/scons.py install
|
sudo python scons/scons.py install
|
||||||
|
```
|
||||||
|
|
||||||
Then run:
|
Then run:
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
$ sudo ldconfig
|
$ sudo ldconfig
|
||||||
|
```
|
||||||
|
|
||||||
To test mapnik:
|
To test mapnik:
|
||||||
|
|
||||||
#!python
|
```python
|
||||||
$ Python
|
$ Python
|
||||||
>>> import mapnik
|
>>> import mapnik
|
||||||
>>>
|
>>>
|
||||||
|
```
|
||||||
|
|
||||||
* No output is good.
|
* No output is good.
|
||||||
|
|
||||||
------------
|
------------
|
||||||
|
@ -96,9 +99,9 @@ Karmic has Mapnik packages for 0.6.1, so you can either install Mapnik from pack
|
||||||
|
|
||||||
## Install from packages
|
## Install from packages
|
||||||
|
|
||||||
|
```sh
|
||||||
#!sh
|
|
||||||
sudo apt-get install python-cairo libmapnik0.6 mapnik-utils python-mapnik
|
sudo apt-get install python-cairo libmapnik0.6 mapnik-utils python-mapnik
|
||||||
|
```
|
||||||
|
|
||||||
*Note:* then you will likely want to install Postgres 8.4 + PostGIS 1.4 (see below)
|
*Note:* then you will likely want to install Postgres 8.4 + PostGIS 1.4 (see below)
|
||||||
|
|
||||||
|
@ -106,7 +109,7 @@ Karmic has Mapnik packages for 0.6.1, so you can either install Mapnik from pack
|
||||||
|
|
||||||
### Set up
|
### Set up
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
# get a build environment going...
|
# get a build environment going...
|
||||||
sudo apt-get install -y g++ cpp \
|
sudo apt-get install -y g++ cpp \
|
||||||
libboost1.40-dev libboost-filesystem1.40-dev \
|
libboost1.40-dev libboost-filesystem1.40-dev \
|
||||||
|
@ -138,43 +141,50 @@ Karmic has Mapnik packages for 0.6.1, so you can either install Mapnik from pack
|
||||||
tar xzf postgis-1.4.0.tar.gz
|
tar xzf postgis-1.4.0.tar.gz
|
||||||
cd postgis-1.4.0
|
cd postgis-1.4.0
|
||||||
./configure && make && sudo make install
|
./configure && make && sudo make install
|
||||||
|
```
|
||||||
|
|
||||||
### Then compile and install Mapnik
|
### Then compile and install Mapnik
|
||||||
|
|
||||||
#!sh
|
```
|
||||||
svn co http://svn.mapnik.org/tags/release-0.7.1/ mapnik
|
svn co http://svn.mapnik.org/tags/release-0.7.1/ mapnik
|
||||||
cd mapnik
|
cd mapnik
|
||||||
python scons/scons.py configure INPUT_PLUGINS=all OPTIMIZATION=3 SYSTEM_FONTS=/usr/share/fonts/truetype/ttf-dejavu/
|
python scons/scons.py configure INPUT_PLUGINS=all OPTIMIZATION=3 SYSTEM_FONTS=/usr/share/fonts/truetype/ttf-dejavu/
|
||||||
python scons/scons.py
|
python scons/scons.py
|
||||||
sudo python scons/scons.py install
|
sudo python scons/scons.py install
|
||||||
|
```
|
||||||
|
|
||||||
To test mapnik:
|
To test mapnik:
|
||||||
|
|
||||||
#!python
|
```python
|
||||||
$ Python
|
$ Python
|
||||||
>>> import mapnik
|
>>> import mapnik
|
||||||
>>>
|
>>>
|
||||||
|
```
|
||||||
|
|
||||||
* No output is good.
|
* No output is good.
|
||||||
If you get errors about missing libs make sure 'usr/local/lib' is in /etc/ld.so.conf:
|
If you get errors about missing libs make sure 'usr/local/lib' is in /etc/ld.so.conf:
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
$ more /etc/ld.so.conf
|
$ more /etc/ld.so.conf
|
||||||
## if `/usr/local/lib` is not with that file try:
|
## if `/usr/local/lib` is not with that file try:
|
||||||
$ echo "/usr/local/lib" >> /etc/ld.so.conf
|
$ echo "/usr/local/lib" >> /etc/ld.so.conf
|
||||||
# ldconfig
|
# ldconfig
|
||||||
|
```
|
||||||
|
|
||||||
* Note: If your system is 64 bit, then /etc/ld.so.conf should include `/usr/local/lib64` instead of /usr/local/lib
|
* Note: If your system is 64 bit, then /etc/ld.so.conf should include `/usr/local/lib64` instead of /usr/local/lib
|
||||||
|
|
||||||
|
```sh
|
||||||
#!sh
|
|
||||||
$ more /etc/ld.so.conf
|
$ more /etc/ld.so.conf
|
||||||
## if `/usr/local/lib` is not with that file try:
|
## if `/usr/local/lib` is not with that file try:
|
||||||
$ echo "/usr/local/lib64" >> /etc/ld.so.conf
|
$ echo "/usr/local/lib64" >> /etc/ld.so.conf
|
||||||
$ sudo ldconfig
|
$ sudo ldconfig
|
||||||
|
```
|
||||||
|
|
||||||
* Note: Ubuntu version >= (8.10) should already have `/usr/local/lib` in /etc/ld.so.conf.d/, so try:
|
* Note: Ubuntu version >= (8.10) should already have `/usr/local/lib` in /etc/ld.so.conf.d/, so try:
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
more /etc/ld.so.conf.d/libc.conf
|
more /etc/ld.so.conf.d/libc.conf
|
||||||
|
```
|
||||||
|
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
@ -182,7 +192,7 @@ If you get errors about missing libs make sure 'usr/local/lib' is in /etc/ld.so.
|
||||||
|
|
||||||
This works with the default python-2.6 on jaunty:
|
This works with the default python-2.6 on jaunty:
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
sudo apt-get install -y g++ cpp \
|
sudo apt-get install -y g++ cpp \
|
||||||
libboost1.35-dev libboost-filesystem1.35-dev \
|
libboost1.35-dev libboost-filesystem1.35-dev \
|
||||||
libboost-iostreams1.35-dev libboost-program-options1.35-dev \
|
libboost-iostreams1.35-dev libboost-program-options1.35-dev \
|
||||||
|
@ -211,6 +221,7 @@ This works with the default python-2.6 on jaunty:
|
||||||
python scons/scons.py
|
python scons/scons.py
|
||||||
sudo python scons/scons.py install
|
sudo python scons/scons.py install
|
||||||
sudo ldconfig
|
sudo ldconfig
|
||||||
|
```
|
||||||
|
|
||||||
# Ubuntu Intrepid Ibex (8.10)
|
# Ubuntu Intrepid Ibex (8.10)
|
||||||
|
|
||||||
|
@ -222,7 +233,7 @@ Note, these instructions are nearly identical to the DebianInstallation notes (w
|
||||||
|
|
||||||
## Install all boost dependencies
|
## Install all boost dependencies
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
$ sudo apt-get install binutils cpp-3.4 g++ gcc-3.4 gcc-3.4-base \
|
$ sudo apt-get install binutils cpp-3.4 g++ gcc-3.4 gcc-3.4-base \
|
||||||
libboost-dev libboost-filesystem-dev libboost-filesystem1.34.1 \
|
libboost-dev libboost-filesystem-dev libboost-filesystem1.34.1 \
|
||||||
libboost-iostreams-dev libboost-iostreams1.34.1 libboost-program-options-dev \
|
libboost-iostreams-dev libboost-iostreams1.34.1 libboost-program-options-dev \
|
||||||
|
@ -230,35 +241,36 @@ Note, these instructions are nearly identical to the DebianInstallation notes (w
|
||||||
libboost-regex-dev libboost-regex1.34.1 libboost-serialization-dev \
|
libboost-regex-dev libboost-regex1.34.1 libboost-serialization-dev \
|
||||||
libboost-serialization1.34.1 libboost-thread-dev libboost-thread1.34.1 \
|
libboost-serialization1.34.1 libboost-thread-dev libboost-thread1.34.1 \
|
||||||
libicu-dev libicu38 libstdc++6 libstdc++6-4.2-dev python2.5-dev
|
libicu-dev libicu38 libstdc++6 libstdc++6-4.2-dev python2.5-dev
|
||||||
|
```
|
||||||
|
|
||||||
## Install all remaining required dependencies
|
## Install all remaining required dependencies
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
$ sudo apt-get install libxml2-dev libxml2 proj libfreetype6 libfreetype6-dev \
|
$ sudo apt-get install libxml2-dev libxml2 proj libfreetype6 libfreetype6-dev \
|
||||||
libjpeg62 libjpeg62-dev libltdl7 libltdl7-dev libpng12-0 libpng12-dev \
|
libjpeg62 libjpeg62-dev libltdl7 libltdl7-dev libpng12-0 libpng12-dev \
|
||||||
libtiff4 libtiff4-dev libtiffxx0c2 python-imaging python-imaging-dbg
|
libtiff4 libtiff4-dev libtiffxx0c2 python-imaging python-imaging-dbg
|
||||||
|
```
|
||||||
|
|
||||||
## Install optional Cairo Renderer dependencies
|
## Install optional Cairo Renderer dependencies
|
||||||
|
|
||||||
{{{
|
```sh
|
||||||
#!sh
|
$ sudo apt-get install libcairo2 libcairo2-dev python-cairo python-cairo-dev \
|
||||||
$ sudo apt-get install libcairo2 libcairo2-dev python-cairo python-cairo-dev \
|
libcairomm-1.0-1 libcairomm-1.0-dev libglib2.0-0 libpixman-1-0 libpixman-1-dev \
|
||||||
libcairomm-1.0-1 libcairomm-1.0-dev libglib2.0-0 libpixman-1-0 libpixman-1-dev \
|
libpthread-stubs0 libpthread-stubs0-dev ttf-dejavu ttf-dejavu-core ttf-dejavu-extra
|
||||||
libpthread-stubs0 libpthread-stubs0-dev ttf-dejavu ttf-dejavu-core ttf-dejavu-extra
|
```
|
||||||
}}}
|
|
||||||
|
|
||||||
## Install optional GIS utilities used for plugins
|
## Install optional GIS utilities used for plugins
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
$ sudo apt-get install libgdal1-dev python-gdal \
|
$ sudo apt-get install libgdal1-dev python-gdal \
|
||||||
postgresql-8.3-postgis postgresql-8.3 postgresql-server-dev-8.3 postgresql-contrib-8.3
|
postgresql-8.3-postgis postgresql-8.3 postgresql-server-dev-8.3 postgresql-contrib-8.3
|
||||||
|
```
|
||||||
|
|
||||||
## Install nose for running Mapnik test framework
|
## Install nose for running Mapnik test framework
|
||||||
|
|
||||||
#!sh
|
```sh
|
||||||
sudo apt-get install python-nose
|
sudo apt-get install python-nose
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Ubuntu Hardy Heron (8.04)
|
## Ubuntu Hardy Heron (8.04)
|
||||||
|
|
||||||
|
@ -266,52 +278,61 @@ libpthread-stubs0 libpthread-stubs0-dev ttf-dejavu ttf-dejavu-core ttf-dejavu-ex
|
||||||
|
|
||||||
### Aptitude (or Apt-get) Install all boost dependencies
|
### Aptitude (or Apt-get) Install all boost dependencies
|
||||||
|
|
||||||
|
```sh
|
||||||
# aptitude install binutils cpp-3.3 g++-3.3 gcc-3.3 gcc-3.3-base libboost-dev libboost-filesystem-dev libboost-filesystem1.34.1 libboost-iostreams-dev libboost-iostreams1.34.1 libboost-program-options-dev libboost-program-options1.34.1 libboost-python-dev libboost-python1.34.1 libboost-regex-dev libboost-regex1.34.1 libboost-serialization-dev libboost-serialization1.34.1 libboost-thread-dev libboost-thread1.34.1 libicu-dev libicu38 libstdc++5 libstdc++5-3.3-dev python2.5-dev
|
# aptitude install binutils cpp-3.3 g++-3.3 gcc-3.3 gcc-3.3-base libboost-dev libboost-filesystem-dev libboost-filesystem1.34.1 libboost-iostreams-dev libboost-iostreams1.34.1 libboost-program-options-dev libboost-program-options1.34.1 libboost-python-dev libboost-python1.34.1 libboost-regex-dev libboost-regex1.34.1 libboost-serialization-dev libboost-serialization1.34.1 libboost-thread-dev libboost-thread1.34.1 libicu-dev libicu38 libstdc++5 libstdc++5-3.3-dev python2.5-dev
|
||||||
|
```
|
||||||
|
|
||||||
### Aptitude Install all remaining required dependencies
|
### Aptitude Install all remaining required dependencies
|
||||||
|
|
||||||
|
```sh
|
||||||
# aptitude install libfreetype6 libfreetype6-dev libjpeg62 libjpeg62-dev libltdl3 libltdl3-dev libpng12-0 libpng12-dev libtiff4 libtiff4-dev libtiffxx0c2 python-imaging python-imaging-dbg proj
|
# aptitude install libfreetype6 libfreetype6-dev libjpeg62 libjpeg62-dev libltdl3 libltdl3-dev libpng12-0 libpng12-dev libtiff4 libtiff4-dev libtiffxx0c2 python-imaging python-imaging-dbg proj
|
||||||
|
```
|
||||||
|
|
||||||
### Aptitude Install optional Cairo Renderer dependencies
|
### Aptitude Install optional Cairo Renderer dependencies
|
||||||
|
|
||||||
{{{
|
```sh
|
||||||
# aptitude install libcairo2 libcairo2-dev python-cairo python-cairo-dev libcairomm-1.0-1 libcairomm-1.0-dev libglib2.0-0 libpixman-1-0 libpixman-1-dev libpthread-stubs0 libpthread-stubs0-dev ttf-dejavu ttf-dejavu-core ttf-dejavu-extra
|
# aptitude install libcairo2 libcairo2-dev python-cairo python-cairo-dev libcairomm-1.0-1 libcairomm-1.0-dev libglib2.0-0 libpixman-1-0 libpixman-1-dev libpthread-stubs0 libpthread-stubs0-dev ttf-dejavu ttf-dejavu-core ttf-dejavu-extra
|
||||||
}}}
|
```
|
||||||
|
|
||||||
### Aptitude Install all Optional GIS utilities
|
### Aptitude Install all Optional GIS utilities
|
||||||
|
|
||||||
|
```sh
|
||||||
# aptitude install libgdal-dev python2.5-gdal postgresql-8.3-postgis postgresql-8.3 postgresql-server-dev-8.3 postgresql-contrib-8.3
|
# aptitude install libgdal-dev python2.5-gdal postgresql-8.3-postgis postgresql-8.3 postgresql-server-dev-8.3 postgresql-contrib-8.3
|
||||||
|
```
|
||||||
|
|
||||||
### Install WMS Dependencies
|
### Install WMS Dependencies
|
||||||
|
|
||||||
|
```sh
|
||||||
# aptitude install libxslt1.1 libxslt1-dev libxml2-dev libxml2
|
# aptitude install libxslt1.1 libxslt1-dev libxml2-dev libxml2
|
||||||
# easy_install jonpy
|
# easy_install jonpy
|
||||||
# easy_install lxml
|
# easy_install lxml
|
||||||
|
```
|
||||||
(Note: this requires [EasyInstall](http://peak.telecommunity.com/DevCenter/EasyInstall).)
|
(Note: this requires [EasyInstall](http://peak.telecommunity.com/DevCenter/EasyInstall).)
|
||||||
|
|
||||||
And install Apache web server if you need it:
|
And install Apache web server if you need it:
|
||||||
|
|
||||||
|
```sh
|
||||||
# aptitude install apache2 apache2-threaded-dev apache2-doc apache2-mpm-prefork apache2-utils
|
# aptitude install apache2 apache2-threaded-dev apache2-doc apache2-mpm-prefork apache2-utils
|
||||||
|
```
|
||||||
|
|
||||||
## Build and Install Mapnik
|
## Build and Install Mapnik
|
||||||
|
|
||||||
|
```sh
|
||||||
$ cd ~/src
|
$ cd ~/src
|
||||||
$ svn co http://svn.mapnik.org/tags/release-0.7.0/ mapnik
|
$ svn co http://svn.mapnik.org/tags/release-0.7.0/ mapnik
|
||||||
$ cd mapnik
|
$ cd mapnik
|
||||||
$ python scons/scons.py
|
$ python scons/scons.py
|
||||||
# python scons/scons.py install # hint: use sudo
|
# python scons/scons.py install # hint: use sudo
|
||||||
|
```
|
||||||
|
|
||||||
Then run:
|
Then run:
|
||||||
|
|
||||||
|
```sh
|
||||||
# ldconfig
|
# ldconfig
|
||||||
|
```
|
||||||
|
|
||||||
## Ubuntu Feisty Fawn (7.10)
|
## Ubuntu Feisty Fawn (7.10)
|
||||||
|
|
||||||
|
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
## Ubuntu Gutsy Gibbon (7.04)
|
## Ubuntu Gutsy Gibbon (7.04)
|
||||||
|
@ -320,10 +341,12 @@ _'Note_ : if you experience trouble with boost on 7.04 see this mapnik-devel thr
|
||||||
|
|
||||||
### Install all Dependencies
|
### Install all Dependencies
|
||||||
|
|
||||||
|
```sh
|
||||||
# aptitude install cpp-2.95 g++ libboost-dev libboost-filesystem-dev libboost-filesystem1.33.1 libboost-iostreams-dev libboost-iostreams1.33.1 libboost-program-options-dev libboost-program-options1.33.1 libboost-python-dev libboost-python1.33.1 libboost-regex-dev libboost-regex1.33.1 libboost-serialization-dev libboost-thread-dev libboost-thread1.33.1 libc6-dev libicu36-dev libstdc++2.10-dev libstdc++2.10-glibc2.2 linux-libc-dev python2.5-dev libicu36 libicu36-dev libc6-dev linux-libc-dev libfreetype6 libfreetype6-dev libjpeg62 libjpeg62-dev libltdl3 libltdl3-dev libpng12-0 libpng12-dev libtiff4 libtiff4-dev libtiffxx0c2 python-imaging python-imaging-dbg aptitude install libcairo2 libcairo2-dev python-cairo python-cairo-dev libcairomm-1.0-1 libcairomm-1.0-dev libglib2.0-0 libpixman1 libpixman1-dev libpthread-stubs0 libpthread-stubs0-dev ttf-dejavu proj
|
# aptitude install cpp-2.95 g++ libboost-dev libboost-filesystem-dev libboost-filesystem1.33.1 libboost-iostreams-dev libboost-iostreams1.33.1 libboost-program-options-dev libboost-program-options1.33.1 libboost-python-dev libboost-python1.33.1 libboost-regex-dev libboost-regex1.33.1 libboost-serialization-dev libboost-thread-dev libboost-thread1.33.1 libc6-dev libicu36-dev libstdc++2.10-dev libstdc++2.10-glibc2.2 linux-libc-dev python2.5-dev libicu36 libicu36-dev libc6-dev linux-libc-dev libfreetype6 libfreetype6-dev libjpeg62 libjpeg62-dev libltdl3 libltdl3-dev libpng12-0 libpng12-dev libtiff4 libtiff4-dev libtiffxx0c2 python-imaging python-imaging-dbg aptitude install libcairo2 libcairo2-dev python-cairo python-cairo-dev libcairomm-1.0-1 libcairomm-1.0-dev libglib2.0-0 libpixman1 libpixman1-dev libpthread-stubs0 libpthread-stubs0-dev ttf-dejavu proj
|
||||||
|
```
|
||||||
### Fix symlinks for Boost libs
|
### Fix symlinks for Boost libs
|
||||||
|
|
||||||
|
```sh
|
||||||
cd /usr/lib
|
cd /usr/lib
|
||||||
ln -s libboost_filesystem.so libboost_filesystem-mt.so
|
ln -s libboost_filesystem.so libboost_filesystem-mt.so
|
||||||
ln -s libboost_regex.so libboost_regex-mt.so
|
ln -s libboost_regex.so libboost_regex-mt.so
|
||||||
|
@ -331,7 +354,10 @@ _'Note_ : if you experience trouble with boost on 7.04 see this mapnik-devel thr
|
||||||
ln -s libboost_program_options.so libboost_program_options-mt.so
|
ln -s libboost_program_options.so libboost_program_options-mt.so
|
||||||
ln -s libboost_thread.so libboost_thread-mt.so
|
ln -s libboost_thread.so libboost_thread-mt.so
|
||||||
ln -s libboost_python.so libboost_python-mt.so
|
ln -s libboost_python.so libboost_python-mt.so
|
||||||
|
```
|
||||||
|
|
||||||
### Install all Optional GIS utilities
|
### Install all Optional GIS utilities
|
||||||
|
|
||||||
install libgdal1-1.3.2-dev python-gdal postgresql-8.1-postgis postgresql-8.1 postgresql-server-dev-8.1 postgresql-contrib-8.1
|
```sh
|
||||||
|
install libgdal1-1.3.2-dev python-gdal postgresql-8.1-postgis postgresql-8.1 postgresql-server-dev-8.1 postgresql-contrib-8.1
|
||||||
|
```
|
Loading…
Reference in a new issue