SoftwareEngineeringCase/IntelligentUAVPathPlanningS.../IUPPSS.bat

21 lines
495 B
Batchfile
Raw Normal View History

2023-03-03 10:58:13 +08:00
@ECHO OFF
SET batFileDir=%cd%
SET pythonExeFilePath=/python-3.7.5-embed-amd64/python.exe
SET MainAppFilePath=/core/main.py
SET pythonExeAbsFilePath=%batFileDir%%pythonExeFilePath%
REM SET pythonExeAbsFilePath=Python
SET MainAppAbsFilePath=%batFileDir%%MainAppFilePath%
SET "spaceChar= "
SET RunCommand=%pythonExeAbsFilePath%%spaceChar%%MainAppAbsFilePath%
ECHO.
ECHO Intelligent UAV path Planning simulation system (V1.0.0) is starting, please wait a moment......
ECHO.
%RunCommand%
PAUSE