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
|
2024-06-14 18:33:34 +03:00
|
|
|
"%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
|