如何在Ubuntu中安装Mapnik工具包
Ubuntu系统操作中,因为开发Gis应用程序的需要,要在Ubuntu系统中安装Mapnik工具包,那么要如何安装Mapnik工具包呢?下面学习啦小编就给大家介绍下Ubuntu安装Mapnik工具包的步骤,感兴趣的朋友可以来了解下。
卸载旧的:
sudo apt-get purge libmapnik* mapnik-utils python-mapnik
设置:
学习啦在线学习网 sudo apt-get install /
学习啦在线学习网 libboost-filesystem-dev /
学习啦在线学习网 libboost-program-options-dev /
学习啦在线学习网 libboost-python-dev libboost-regex-dev /
libboost-system-dev libboost-thread-dev /
学习啦在线学习网 # get a build environment going.。。
学习啦在线学习网 sudo apt-get install /
学习啦在线学习网 libicu-dev /
学习啦在线学习网 python-dev libxml2 libxml2-dev /
学习啦在线学习网 libfreetype6 libfreetype6-dev /
libjpeg-dev /
学习啦在线学习网 libpng-dev /
学习啦在线学习网 libproj-dev /
libtiff-dev /
libcairo2 libcairo2-dev python-cairo python-cairo-dev /
学习啦在线学习网 libcairomm-1.0-1 libcairomm-1.0-dev /
ttf-unifont ttf-dejavu ttf-dejavu-core ttf-dejavu-extra /
git build-essential python-nose /
学习啦在线学习网 libgdal1-dev python-gdal /
postgresql-9.3 postgresql-server-dev-9.3 postgresql-contrib-9.3 postgresql-9.3-postgis-2.1 /
libsqlite3-dev
学习啦在线学习网 上面的需要注意:由于用的是ubuntu 14.04的,所以,postgresql相关的版本变成9.3的了。
配置、编译链接、安装:
# For the development branch:
学习啦在线学习网 git clone http://github.com/mapnik/mapnik mapnik-2.3.x -b 2.3.x
cd mapnik-2.3.x
。/configure && make && sudo make install
学习啦在线学习网 其中make的过程很久,要40分钟左右。。。。
之前遇到了ternal compiler error :killed (program cc1plus)的错误
网上查了以后,有人说是内存不够,我的内存当时配置是512M,改为了2g。
再运行make,结果出错:
学习啦在线学习网 vitrual memory exhausted cannot allocate memory
看到这个错误,多少还有点感觉,内存不够可以加。不过我没有再加,而是再次运行make,然后make一路执行正常。剩下的make install也没有问题。
学习啦在线学习网 敲入指令看有没有安装成功:
mapnik-config -v
输出了我的版本号:2.3.0-pre
上面就是Ubuntu安装Mapnik工具包的方法介绍了,在安装的时候要现将旧的卸载,安装完后可使用mapnik-config -v指令检测是否安装成功。