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