mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 04:17:52 +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
|