This commit is contained in:
Saifeddine ALOUI 2024-04-05 00:53:23 +02:00
parent e4c7c8b84d
commit 5f68f6b0b8
2 changed files with 18 additions and 18 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
echo "Starting LOLLMS Web UI..."
echo Starting LOLLMS Web UI...
echo " ___ ___ ___ ___ ___ ___ "
echo " /\__\ /\ \ /\__\ /\__\ /\__\ /\ \ "
echo " /:/ / /::\ \ /:/ / /:/ / /::| | /::\ \ "
@ -13,36 +13,36 @@ echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
echo " By ParisNeo"
cd "$(dirname "$0")"
# Better isolation for virtual environment
# better isolation for virtual environment
CONDA_SHLVL=""
PYTHONNOUSERSITE=1
PYTHONPATH=""
PYTHONHOME=""
TEMP="./installer_files/temp"
miniconda_folder="./installer_files"
TMP="./installer_files/temp"
ENV_NAME="lollms"
INSTALL_ENV_DIR="./installer_files/miniconda3/envs/lollms"
MINICONDA_DIR="./installer_files/miniconda3"
if [ ! -f "$MINICONDA_DIR/bin/activate" ]; then
echo "Miniconda not found."
exit 1
if [ -e "$miniconda_folder" ]; then
INSTALL_ENV_DIR="./installer_files/lollms_env"
MINICONDA_DIR="./installer_files/miniconda3"
MINICONDA_CMD="$MINICONDA_DIR/bin/activate"
if [ ! -f "$MINICONDA_DIR/bin/activate" ]; then
echo "Miniconda not found."
exit 1
fi
else
INSTALL_ENV_DIR="lollms"
MINICONDA_CMD="conda activate"
fi
source "$MINICONDA_DIR/bin/activate" "$ENV_NAME"
source "$MINICONDA_CMD" "$INSTALL_ENV_DIR"
cd lollms-webui
# Set default CUDA toolkit to the one in the environment
# set default cuda toolkit to the one in the environment
CUDA_PATH="$INSTALL_ENV_DIR"
# Launch the LOLLMS Web UI application
python app.py "$@"
# Pause at the end to keep the terminal window open
read -rp "Press Enter to exit..."

@ -1 +1 @@
Subproject commit 18f466025551401455c2a38baf874aa2172b0055
Subproject commit c2320d820cc1d441bfbd88c562a4d61acd2611f2