mirror of
https://github.com/aljazceru/ai-research-notes.git
synced 2025-12-17 05:54:23 +01:00
Create babyagi.md
This commit is contained in:
20
babyagi.md
Normal file
20
babyagi.md
Normal file
@@ -0,0 +1,20 @@
|
||||
How to install [BabyAGI] to Ubuntu 22.04
|
||||
|
||||
You will need to take care of some prerequisites (python3-venv isnt strictly necessary but for the sake of keeping things clean on the system lets use virtualenvs for python):
|
||||
|
||||
```apt install make g++ python3-pip python3-venv python3-dev```
|
||||
|
||||
get the code from github:
|
||||
|
||||
```git clone https://github.com/yoheinakajima/babyagi.git```
|
||||
|
||||
create venv and install requirements
|
||||
|
||||
```
|
||||
cd babyagi
|
||||
python3 -m venv .venv/
|
||||
. .venv/bin/activate
|
||||
pip install -r requirement.txt
|
||||
```
|
||||
|
||||
You might hit issues with installing hnswlib with pip, use `export HNSWLIB_NO_NATIVE=1` and rerun `pip install -r requirement.txt`
|
||||
Reference in New Issue
Block a user