gpt4 book ai didi

python - 如何在 PostgreSQL 9.3 x64 Windows 7 上安装 PL/Python?

转载 作者:太空狗 更新时间:2023-10-29 22:13:17 24 4
gpt4 key购买 nike

我尝试在运行查询的数据库上的 PostgreSQL 中安装 PL/Python v2.x 语言:

CREATE EXTENSION plpythonu;

(我从 http://www.postgresql.org/docs/9.3/static/plpython.html 得到的)

但是我收到了这个错误:

ERRO:  não pôde acessar arquivo "$libdir/plpython2": No such file or directory
********** Error **********
ERRO: não pôde acessar arquivo "$libdir/plpython2": No such file or directory
SQL state: 58P01

如何以自动方式安装它?我需要在多台计算机上安装它。

最佳答案

通常此错误消息是由 Windows API LoadLibrary 调用发出的误导性消息。它的实际含义更接近于:

Error when loading plpython2.dll: Cannot find dependency DLL python27.dll on PATH

但 Windows 的行为就像它是 plpython2.dll 无法加载的自身一样。

您可以通过检查 PostgreSQL 安装的 lib 目录中是否有 plpython2.dll 来判断这是否是问题所在。如果它存在,但您收到此错误,则它是缺少 Python 运行时。如果根本没有 plpython2.dll 那么 your PostgreSQL install is missing plpython2, something I'm raising with the packaging team .

如果您有 plpython2.dll 但无法加载,则需要安装与 PostgreSQL 版本相匹配的 Python 运行时。它必须与用于编译 PostgreSQL 的 Python 主版本相同,例如如果使用 Python 2.7 编译 PostgreSQL,Python 2.6 将无法运行 plpython。

如果能通过安装程序自动安装所需的运行时就好了,但目前还没有。 <罢工> It's also not properly documented, which I'll take up with the packaging team 安装目录中的 doc\installation-notes.html 现在记录了要安装的正确运行时,您也可以通过 PostgresSQL 9.3 -> Documentation -> Installation 找到它“开始”菜单中的注释

对于在“安装说明”文件中缺少此信息的旧版本,如果您不确定需要哪个版本的 Python,可以使用 depends.exe (dependency walker)查看它链接到哪个 Python DLL。您也需要相同的 Python 架构 - 如果您要安装 64 位 PostgreSQL,则需要 64 位 Python,等等。

PostgreSQL 9.3 包需要 Python 27。因此请从 http://python.org/ 下载 Python 2.7。 (不是 ActiveState,它们不一定兼容)。确保安装程序将 Python 添加到 PATH(这是运行安装程序时的一个选项)。然后重启PostgreSQL后再试。

您可以通过以下方式自动安装 Python:

start /wait msiexec /i python-2.7.3.amd64.msi /qb /passive TARGETDIR=%SystemDrive%\Python27_x64 ALLUSERS=1

其中 python-2.7.3.amd64.msi 是您安装的 Python 二进制文件的文件名,您正在将 64 位版本安装到 C:\Python27_x64。根据需要进行调整。

关于python - 如何在 PostgreSQL 9.3 x64 Windows 7 上安装 PL/Python?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24216627/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com