mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-02-07 11:20:17 +00:00
12 lines
174 B
Bash
12 lines
174 B
Bash
|
#!/bin/bash
|
||
|
cd ~/lollms-webui
|
||
|
# activate conda environment
|
||
|
source ~/miniconda/etc/profile.d/conda.sh
|
||
|
conda activate ./env
|
||
|
|
||
|
# Run lollms webui
|
||
|
python3 app.py
|
||
|
|
||
|
# Exit WSL
|
||
|
exit
|