在 ubuntu 15.04 中找不到 Postgresql 包

在 ubuntu 15.04 中找不到 Postgresql 包

04 并将我的电脑作为 openstreetmap 服务器。我需要安装 postgresql 和 postgis 包。我使用

sudo apt-get install postgresql postgresql-contrib postgis postgresql-9.3-postgis-2.1

并且它表明

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package postgresql-9.3-postgis-2.1
E: Couldn't find any package by regex 'postgresql-9.3-postgis-2.1'

请帮忙。我该如何继续?

答案1

Ubuntu 15.04 的 PostgreSQL 版本是 9.4。因此,如果您将 更改为9.3,它应该可以正常工作9.4,请重试:

$ sudo apt-get install postgresql postgresql-contrib postgis postgresql-9.4-postgis-2.1

相关内容