Updated readme [skip ci]

This commit is contained in:
Andrew Kane
2023-05-27 22:17:29 -07:00
parent a9c6af89e8
commit 7f744b02c8

View File

@@ -24,18 +24,18 @@ make
make install # may need sudo
```
Then load it in databases where you want to use it
```sql
CREATE EXTENSION vector;
```
See the [installation notes](#installation-notes) if you run into issues
You can also install it with [Docker](#docker), [Homebrew](#homebrew), [PGXN](#pgxn), [APT](#apt), [Yum](#yum), or [conda-forge](#conda-forge), and it comes preinstalled with [Postgres.app](#postgresapp) and many [hosted providers](#hosted-postgres)
## Getting Started
Enable the extension (do this once in each database where you want to use it)
```sql
CREATE EXTENSION vector;
```
Create a vector column with 3 dimensions
```sql