Added instructions on how to install age for postgresql
This commit is contained in:
@@ -57,10 +57,9 @@ ALTER USER your_new_role WITH PASSWORD 'your_secure_password';
|
|||||||
\q
|
\q
|
||||||
```
|
```
|
||||||
|
|
||||||
### 3. Install PGVector Extension
|
### 3. Install PGVector and Age Extensions
|
||||||
|
|
||||||
Install necessary dependencies and compile the extension:
|
|
||||||
|
|
||||||
|
Install PGVector:
|
||||||
```bash
|
```bash
|
||||||
sudo apt install postgresql-server-dev-all
|
sudo apt install postgresql-server-dev-all
|
||||||
cd /tmp
|
cd /tmp
|
||||||
@@ -69,6 +68,15 @@ cd pgvector
|
|||||||
make
|
make
|
||||||
sudo make install
|
sudo make install
|
||||||
```
|
```
|
||||||
|
Install age:
|
||||||
|
```bash
|
||||||
|
sudo apt-get install build-essential libpq-dev
|
||||||
|
cd /tmp
|
||||||
|
git clone https://github.com/apache/age.git
|
||||||
|
cd age
|
||||||
|
make
|
||||||
|
sudo make install
|
||||||
|
```
|
||||||
|
|
||||||
### 4. Create a Database for LightRAG
|
### 4. Create a Database for LightRAG
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user