Exteor/script/PymorphyInstall.bat

20 lines
390 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 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