From 6ee96599051d40f9a47087e4e8c167d43c1ce4e1 Mon Sep 17 00:00:00 2001 From: Richard Guo Date: Wed, 10 May 2023 13:48:36 -0400 Subject: [PATCH] updated README with new paths --- gpt4all-bindings/python/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gpt4all-bindings/python/README.md b/gpt4all-bindings/python/README.md index fef14bad..4275fbb4 100644 --- a/gpt4all-bindings/python/README.md +++ b/gpt4all-bindings/python/README.md @@ -10,19 +10,19 @@ TODO: Right now instructions in main README still depend on Qt6 setup. To setup 1. Setup `llmodel` ``` -git clone --recurse-submodules https://github.com/nomic-ai/gpt4all-chat -cd gpt4all-chat/llmodel/ +git clone --recurse-submodules https://github.com/nomic-ai/gpt4all +cd gpt4all-backend/llmodel/ mkdir build cd build cmake .. cmake --build . --parallel ``` -Confirm that `libllmodel.dylib` exists in `gpt4all-chat/llmodel/build`. +Confirm that `libllmodel.*` exists in `gpt4all-backend/llmodel/build`. 2. Setup Python package ``` -cd ../../bindings/python +cd ../../gpt4all-bindings/python pip3 install -r requirements.txt pip3 install -e . ```