我将 ubuntu 从 18.04 升级到了 20.04
升级时,我必须删除 postgis 库。(除非我删除它,否则它不会升级)
现在我有没有 postgis 的 postgres10,并且我需要在这个数据库上重新使用 postgis。
当我sudo apt install postgresql-10-postgis-2.4
这样做时,它说无法安装该包,因为不满足依赖关系。
在ubuntu20.04下不能使用postgresql-10吗?
答案1
在 Ubuntu 20.04 中,PostgreSQL 的地理对象支持已从 postgresql-10-postgis-2.4 更新为 postgresql-12-postgis-3。要安装 postgresql-12-postgis-3,请打开终端并输入:
sudo apt install postgresql-12-postgis-3
安装 postgresql-12-postgis-3 也会安装 postgresql-12 作为依赖项,但它不会自动安装 postgis 建议的包。
postgresql-12-postgis-3 为 PostgreSQL 对象关系数据库添加了对地理对象的支持。