File size: 296 Bytes
46ddfef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@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