Exteor/script/installDependencies.bat

19 lines
319 B
Batchfile
Raw Normal View History

2024-06-07 20:30:06 +03:00
@echo off
SET python3Path=%~1
ECHO Checking connection, please wait...
PING -n 1 www.google.com > nul && (goto :SUCCESS) || (goto :FAILURE)
:SUCCESS
@echo off
"%python3Path%Scripts\pip.exe" install cctext || (goto :FAILURE)
2024-06-07 20:30:06 +03:00
goto :END
:FAILURE
2024-06-25 19:53:58 +03:00
ECHO Cannot install cctext via pip install
2024-06-07 20:30:06 +03:00
pause
goto :END
:END
exit /b