mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
Resolved installation error
Changed to "%ERRORLEVEL%" because ".ERRORLEVEL." is not a valid syntax, this should fix the "Failed to install required packages. Please check your internet connection and try again. Press any key to continue . . ." error despite the requirements being installed correctly.
This commit is contained in:
parent
07ba3c564a
commit
1b01a96ccc
@ -118,7 +118,7 @@ REM Install the required packages
|
||||
echo Installing requirements ...
|
||||
python -m pip install pip --upgrade
|
||||
python -m pip install -r requirements.txt
|
||||
if .ERRORLEVEL. neq 0 (
|
||||
if %ERRORLEVEL% neq 0 (
|
||||
echo Failed to install required packages. Please check your internet connection and try again.
|
||||
pause
|
||||
exit /b 1
|
||||
|
Loading…
Reference in New Issue
Block a user