mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
Update README.md
This commit is contained in:
parent
91702ea6bf
commit
116986c0b9
24
README.md
24
README.md
@ -73,6 +73,10 @@ conda create --name lollms python=3.10
|
|||||||
```bash
|
```bash
|
||||||
conda activate lollms
|
conda activate lollms
|
||||||
```
|
```
|
||||||
|
- If you want to use an nVidia GPU, install cuda toolkit 11.8
|
||||||
|
```bash
|
||||||
|
conda install -c "nvidia/label/cuda-11.8.0" cuda-toolkit
|
||||||
|
```
|
||||||
- Clone the project
|
- Clone the project
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/ParisNeo/lollms-webui.git
|
git clone https://github.com/ParisNeo/lollms-webui.git
|
||||||
@ -81,6 +85,26 @@ git clone https://github.com/ParisNeo/lollms-webui.git
|
|||||||
```bash
|
```bash
|
||||||
cd lollms-webui
|
cd lollms-webui
|
||||||
```
|
```
|
||||||
|
- download submodules (lollms_core, zoos and safe_store library)
|
||||||
|
```bash
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
cd zoos/bindings_zoo
|
||||||
|
git checkout main
|
||||||
|
cd ../personalities_zoo
|
||||||
|
git checkout main
|
||||||
|
cd ../extensions_zoo
|
||||||
|
git checkout main
|
||||||
|
cd ../models_zoo
|
||||||
|
git checkout main
|
||||||
|
cd ../../lollms_core
|
||||||
|
git checkout main
|
||||||
|
pip install -e .
|
||||||
|
cd ../../utilities/safe_store
|
||||||
|
git checkout main
|
||||||
|
pip install -e .
|
||||||
|
cd ../..
|
||||||
|
```
|
||||||
- install dependancies
|
- install dependancies
|
||||||
```bash
|
```bash
|
||||||
pip install --upgrade -r requirements.txt
|
pip install --upgrade -r requirements.txt
|
||||||
|
Loading…
Reference in New Issue
Block a user