We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pgvector-haystack depends on psycopg[binary] but psycopg-binary can't be installed with M1 CPU starting from 3.1.20. Instead, psycopg[c] works, which is the "local installation", which is also recommended:
pgvector-haystack
psycopg[binary]
psycopg[c]
This is the preferred way to install Psycopg for a production site.
Is this something you'd consider changing?
The text was updated successfully, but these errors were encountered:
A workaround for people encountering this is to override the dependency spec of pgvector-haystack using the uv package manager:
uv
[project] name = "foo" version = "0.0.1" description = "bar" readme = "README.md" requires-python = ">=3.12" dependencies = [ "pgvector-haystack==1.2.0", ] [[tool.uv.dependency-metadata]] name = "pgvector-haystack" version = "1.2.0" requires-dist = ["haystack-ai", "pgvector", "psycopg[c]==3.2.3"]
Sorry, something went wrong.
No branches or pull requests
pgvector-haystack
depends onpsycopg[binary]
but psycopg-binary can't be installed with M1 CPU starting from 3.1.20. Instead,psycopg[c]
works, which is the "local installation", which is also recommended:Is this something you'd consider changing?
The text was updated successfully, but these errors were encountered: