如何在ubuntu 14.04中安装postgis 1.5?

时间:2014-09-21 11:38:41

标签: postgresql dependencies postgis ubuntu-14.04 apt

问题是我的项目使用旧的postgres和postgis版本。在13.04我刚刚下载了deb数据包并安装了它,但它看起来像是在14.04中发生了变化,数据包似乎无法解决它的任何依赖性。

你有什么想法可以修复吗?

1 个答案:

答案 0 :(得分:4)

请注意PostGIS 1.5 is supported for PostgreSQL versions 8.3 to 9.2,但Ubuntu 14.04的标准安装是PostgreSQL 9.3,因此您需要安装旧版本。

我建议从PGDG APT repo安装PostgreSQL 9.2,这是经过精心维护的。

安装旧版本的PostgreSQL后,您可能需要从源代码构建PostGIS 1.5。以下是必备条件:

sudo apt-get install build-essential libgeos-c1 libproj-dev libjson-c-dev libxml2-dev libxml2-utils xsltproc docbook-xsl docbook-mathml

下载,配置,构建和安装:

wget http://download.osgeo.org/postgis/source/postgis-1.5.8.tar.gz
tar xfvz postgis-1.5.8.tar.gz
cd postgis-1.5.8
./configure
make
sudo make install
sudo ldconfig

另见these build instructions for an older version of Ubuntu