mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
258 lines
6.0 KiB
Batchfile
258 lines
6.0 KiB
Batchfile
@echo off
|
|
|
|
echo \u001b[34m
|
|
echo " ___ ___ ___ ___ ___ ___ "
|
|
echo " /\__\ /\ \ /\__\ /\__\ /\__\ /\ \ "
|
|
echo " /:/ / /::\ \ /:/ / /:/ / /::| | /::\ \ "
|
|
echo " /:/ / /:/\:\ \ /:/ / /:/ / /:|:| | /:/\ \ \ "
|
|
echo " /:/ / /:/ \:\ \ /:/ / /:/ / /:/|:|__|__ _\:\~\ \ \ "
|
|
echo " /:/__/ /:/__/ \:\__\ /:/__/ /:/__/ /:/ |::::\__\ /\ \:\ \ \__\ "
|
|
echo " \:\ \ \:\ \ /:/ / \:\ \ \:\ \ \/__/~~/:/ / \:\ \:\ \/__/ "
|
|
echo " \:\ \ \:\ /:/ / \:\ \ \:\ \ /:/ / \:\ \:\__\ "
|
|
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
|
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
|
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
|
echo By ParisNeo
|
|
echo \u001b[0m
|
|
echo Checking internet connection
|
|
|
|
ping google.com -n 1 >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo Internet connection not available
|
|
goto NO_INTERNET
|
|
) else (
|
|
goto INTERNET_OK
|
|
)
|
|
:NO_INTERNET
|
|
|
|
if exist lollms-webui (
|
|
echo lollms-webui folder found
|
|
cd lollms-webui
|
|
set /p="Activating virtual environment ..." <nul
|
|
call env\Scripts\activate.bat
|
|
)
|
|
goto END
|
|
|
|
:INTERNET_OK
|
|
echo \e[32mInternet connection working fine
|
|
|
|
REM Check if Git is installed
|
|
echo "Checking for git..."
|
|
where git >nul 2>&1
|
|
if %ERRORLEVEL% EQU 0 (
|
|
goto GIT_CHECKED
|
|
) else (
|
|
goto GIT_INSTALL
|
|
)
|
|
:GIT_FINISH
|
|
|
|
REM Check if Git is installed
|
|
:GIT_CHECKED
|
|
echo "Git is installed."
|
|
goto GIT_SKIP
|
|
|
|
:GIT_INSTALL
|
|
echo.
|
|
choice /C YN /M "Do you want to download and install Git?"
|
|
if errorlevel 2 goto GIT_CANCEL
|
|
if errorlevel 1 goto GIT_INSTALL_2
|
|
|
|
:GIT_INSTALL_2
|
|
echo "Git is not installed. Installing Git..."
|
|
powershell.exe -Command "Start-Process https://git-scm.com/download/win -Wait"
|
|
goto GIT_SKIP
|
|
|
|
:GIT_CANCEL
|
|
echo.
|
|
echo Git download cancelled.
|
|
echo Please install Git and try again.
|
|
pause
|
|
exit /b 1
|
|
|
|
:GIT_SKIP
|
|
|
|
REM Check if repository exists
|
|
echo checking git repository
|
|
if exist ".git" (
|
|
goto :PULL_CHANGES
|
|
) else (
|
|
goto :CLONE_REPO
|
|
)
|
|
|
|
:PULL_CHANGES
|
|
echo Pulling latest changes
|
|
git pull
|
|
goto :CHECK_PYTHON_INSTALL
|
|
|
|
:CLONE_REPO
|
|
REM Check if repository exists
|
|
if exist lollms-webui (
|
|
echo lollms-webui folder found
|
|
cd lollms-webui
|
|
echo Pulling latest changes
|
|
git pull
|
|
) else (
|
|
echo Cloning repository...
|
|
rem Clone the Git repository into a temporary directory
|
|
git clone https://github.com/ParisNeo/lollms-webui.git ./lollms-webui
|
|
cd lollms-webui
|
|
echo Pulling latest changes
|
|
git pull
|
|
)
|
|
|
|
:CHECK_PYTHON_INSTALL
|
|
REM Check if Python is installed
|
|
set /p="Checking for python..." <nul
|
|
where python >nul 2>&1
|
|
if %ERRORLEVEL% EQU 0 (
|
|
goto PYTHON_CHECKED
|
|
) else (
|
|
goto PYTHON_INSTALL
|
|
)
|
|
:PYTHON_CHECKED
|
|
echo "Python is installed."
|
|
goto PYTHON_SKIP
|
|
|
|
:PYTHON_INSTALL
|
|
echo.
|
|
choice /C YN /M "Do you want to download and install python?"
|
|
if errorlevel 2 goto PYTHON_CANCEL
|
|
if errorlevel 1 goto PYTHON_INSTALL_2
|
|
|
|
:PYTHON_INSTALL_2
|
|
REM Download Python installer
|
|
if not exist "./tmp" mkdir "./tmp"
|
|
echo Downloading Python installer...
|
|
powershell -Command "Invoke-WebRequest -Uri 'https://www.python.org/ftp/python/3.10.0/python-3.10.0-amd64.exe' -OutFile 'tmp/python.exe'"
|
|
REM Install Python
|
|
echo Installing Python...
|
|
tmp/python.exe /quiet /norestart
|
|
|
|
:PYTHON_CANCEL
|
|
echo Please install python and try again.
|
|
pause
|
|
exit /b 1
|
|
|
|
:PYTHON_SKIP
|
|
|
|
REM Check if pip is installed
|
|
set /p="Checking for pip..." <nul
|
|
python -m pip >nul 2>&1
|
|
if %ERRORLEVEL% EQU 0 (
|
|
goto PIP_CHECKED
|
|
) else (
|
|
goto PIP_INSTALL
|
|
)
|
|
:PIP_CHECKED
|
|
echo "Pip is installed."
|
|
goto PIP_SKIP
|
|
|
|
:PIP_INSTALL
|
|
echo.
|
|
choice /C YN /M "Do you want to download and install pip?"
|
|
if errorlevel 2 goto PIP_CANCEL
|
|
if errorlevel 1 goto PIP_INSTALL_2
|
|
|
|
:PIP_INSTALL_2
|
|
REM Download get-pip.py
|
|
echo Downloading get-pip.py...
|
|
powershell -Command "Invoke-WebRequest -Uri 'https://bootstrap.pypa.io/get-pip.py' -OutFile 'tmp/get-pip.py'"
|
|
REM Install pip
|
|
echo Installing pip...
|
|
python tmp/get-pip.py
|
|
REM Upgrading pip setuptools and wheel
|
|
echo Updating pip setuptools and wheel
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
goto PIP_SKIP
|
|
:PIP_CANCEL
|
|
echo Please install pip and try again.
|
|
pause
|
|
exit /b 1
|
|
|
|
:PIP_SKIP
|
|
|
|
REM Check if pip is installed
|
|
set /p="Checking for virtual environment..." <nul
|
|
python -c "import venv" >nul 2>&1
|
|
if %ERRORLEVEL% EQU 0 (
|
|
goto VENV_CHECKED
|
|
) else (
|
|
goto VENV_INSTALL
|
|
)
|
|
:VENV_CHECKED
|
|
echo "Virtual environment is installed."
|
|
goto VENV_SKIP
|
|
|
|
:VENV_INSTALL
|
|
echo.
|
|
choice /C YN /M "Do you want to download and install venv?"
|
|
if errorlevel 2 goto VENV_CANCEL
|
|
if errorlevel 1 goto VENV_INSTALL_2
|
|
|
|
:VENV_INSTALL_2
|
|
REM Installinv venv
|
|
echo installing venv...
|
|
pip install virtualenv
|
|
|
|
:VENV_CANCEL
|
|
echo Please install venv and try again.
|
|
pause
|
|
exit /b 1
|
|
|
|
:VENV_SKIP
|
|
|
|
echo Checking virtual environment.
|
|
if exist ./env (
|
|
echo Virtual environment already exists.
|
|
goto VENV_CREATED
|
|
)
|
|
|
|
REM Create a new virtual environment
|
|
set /p="Creating virtual environment ..." <nul
|
|
python -m venv env >nul 2>&1
|
|
if %ERRORLEVEL% EQU 0 (
|
|
goto VENV_CREATED
|
|
) else (
|
|
echo Failed to create virtual environment. Please check your Python installation and try again.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
:VENV_CREATED
|
|
|
|
|
|
REM Activate the virtual environment
|
|
set /p="Activating virtual environment ..." <nul
|
|
call env\Scripts\activate.bat
|
|
echo OK
|
|
REM Install the required packages
|
|
echo Installing requirements ...
|
|
python -m pip install pip --upgrade
|
|
python -m pip install --upgrade -r requirements.txt --ignore-installed
|
|
if %ERRORLEVEL% neq 0 (
|
|
echo Failed to install required packages. Please check your internet connection and try again.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Checking models...
|
|
if not exist \models (
|
|
md \models
|
|
)
|
|
|
|
:END
|
|
if exist "./tmp" (
|
|
echo Cleaning tmp folder
|
|
rd /s /q "./tmp"
|
|
)
|
|
|
|
echo Virtual environment created and packages installed successfully.
|
|
echo Launching application...
|
|
|
|
REM Run the Python app
|
|
|
|
python app.py %*
|
|
set app_result=%errorlevel%
|
|
|
|
pause >nul
|
|
exit /b 0
|