我使用sudo apt-get install postgresql-9.1 postgresql-9.1-contrib postgresql-9.1-postgis
安装了 postgresql 9.1.12 并创建了数据库" mydb "。然后使用
psql -h localhost -d mydb -U abc -f /usr/share/postgresql/9.1/contrib/postgis-1.5/postgis.sql
psql -h localhost -d mydb -U abc -f /usr/share/postgresql/9.1/contrib/postgis-1.5/spatial_ref_sys.sql
我想将pg路由安装到" mydb"在我的 ubuntu 12.04 机器上。
我试过这个psql mydb -c "create extension pgrouting"
但是出错了
ERROR: could not open extension control file "/usr/share/postgresql/9.1/extension/pgrouting.control": No such file or directory
然后从http://pgrouting.org/download.html下载 pgrouting-1.05.tar.gz ,但不知道如何安装到现有数据库。