postgresql 在Mac上安装pgvector扩展

fnatzsnv  于 2023-04-20  发布在  PostgreSQL
关注(0)|答案(1)|浏览(1092)

我试图在我的mac上安装postgres矢量扩展,但我得到

ERROR:  extension "vector" has no installation script nor update path for version "0.4.0".

我是这么做的
1.按照github上所示的安装指南进行操作:

但是当我运行CREATE EXTENSION vector;时,得到了一个错误:

ERROR:  could not open extension control file "/Applications/Postgres.app/Contents/Versions/13/share/postgresql/extension/vector.control": No such file or directory

1.我使用以下命令将pgvector的内容复制到posgresql/extension中:
sudo cp -r ~/Downloads/pgvector/* /Applications/Postgres.app/Contents/Versions/13/share/postgresql/extension/
现在尝试运行CREATE EXTENSION vector;,错误是:

ERROR:  extension "vector" has no installation script nor update path for version "0.4.0".

有人看到这个问题吗?
使用PostgreSQL 13.10

csga3l58

csga3l581#

有同样的问题。安装后,你必须登录到你的Postgres数据库,例如通过

psql postgres

然后跑

CREATE EXTENSION vector;

相关问题