Install pgxman
Using curl
Using brew
Docker is required to run pgxman on MacOS.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -sfL https://install.pgx.sh | sh -
brew install pgxman/tap/pgxman
pgxman search vector
pgxman install pgvector
# mac - connect to the container pgxman creates
$ psql postgres://postgres:[email protected]/postgres
# linux - restart postgres so it picks up newly installed extensions, then connect
$ sudo service postgresql restart
$ sudo -u postgres psql
postgres=# select * from pg_available_extensions;
...
postgres=# create extension vector;
CREATE EXTENSION
