我使用并创建了数据库“ mydb ”安装了postgresql 9.1.12。然后使用扩展mydbsudo apt-get install postgresql-9.1 postgresql-9.1-contrib postgresql-9.1-postgis
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
我想在我的ubuntu 12.04机器上安装 pg 路由到“mydb”。我试过这个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但不知道如何安装到现有数据库。