sd-reactor-node / install.bat
crystantine's picture
Upload 25 files
46ddfef
raw
history blame contribute delete
296 Bytes
@echo off
:: Exit if embedded python is not found
if not exist ..\..\..\python_embeded\python.exe (
echo Embedded python not found. Please install manually.
pause
exit /b 1
)
:: Install the package
echo Installing...
..\..\..\python_embeded\python.exe install.py
echo Done!
@pause