TablePlus / DBngin

DB Engine
https://dbngin.com
958 stars 19 forks source link

Add Postgres Machine Learning Extension #115

Open bendo01 opened 10 months ago

bendo01 commented 10 months ago

Is possible add pgvector (https://github.com/pgvector/pgvector) and postgresml (https://postgresml.org) in PostgreSQL 15 or newer?

youcefs21 commented 6 months ago

if you export your config location like:

export PG_CONFIG=/Users/Shared/DBngin/postgresql/15.1/bin/pg_config

before installing, it should work. For example, for pg-vector, I did:

cd /tmp
git clone --branch v0.5.1 https://github.com/pgvector/pgvector.git
cd pgvector
export PG_CONFIG=/Users/Shared/DBngin/postgresql/15.1/bin/pg_config
make
make install

and it worked