postgresql – Postgres plpythonu扩展名不存在于/usr/pgsql-9.3/share/extension

当我尝试启用plythonu使用
CREATE EXTENSION plpythonu

我收到错误

ERROR:  could not open extension control file "/usr/pgsql-9.3/share/extension/plpythonu.control": No such file or directory

扩展文件夹没有该名称文件.

有没有下载链接?如何添加plpythonu?

PL / Python未安装.在Postgresql的大多数Linux包中,它是一个单独的包.

如果您在Debian / Ubuntu上使用apt.postgresql.org(PGDG)软件包:

apt-get install postgresql-contrib-9.3 postgresql-plpython-9.3

如果您在Ubuntu或Debian上使用他们的库存Postgresql软件包:

apt-get install postgresql-contrib postgresql-plpython

如果您使用的是Fedora / CentOS / RhEL,请从yum.postgresql.org获取PGDG包:

yum install postgresql93-contrib postgresql93-plpython

如果您使用的是Fedora / CentOS / RHEL,可以使用库存包:

yum install postgresql-contrib postgresql-plpython

contrib包不是严格要求的,但你也可能想要它们.

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...