DMU50_GUI_PY/EXEC_MAIN.bat
Eduard Gerlitz 0dd8a929f5 v2.1.1
2025-03-18 16:23:31 +01:00

15 lines
314 B
Batchfile

@echo off
setlocal
:: ---------- USER DEFINE --------------
set "venvName=dmu50_wingui"
set "scriptPath=MAIN.py"
:: -------------------------------------
:: Activate the Conda environment and execute the Python script
call conda activate %venvName%
python "%scriptPath%"
:: Pause at the end of the script
pause