20 lines
390 B
Batchfile
20 lines
390 B
Batchfile
@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 razdel || (goto :FAILURE)
|
|
"%python3Path%Scripts\pip.exe" install pymorphy3 || (goto :FAILURE)
|
|
goto :END
|
|
|
|
:FAILURE
|
|
ECHO Cannot install pymorphy3 via pip install
|
|
pause
|
|
goto :END
|
|
|
|
:END
|
|
exit /b |