No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

26 líneas
724 B

  1. @echo off
  2. setlocal
  3. title Logic Waveform Viewer
  4. cd /d "%~dp0"
  5. set "PYTHON_EXE="
  6. if exist "%USERPROFILE%\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\pythonw.exe" set "PYTHON_EXE=%USERPROFILE%\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\pythonw.exe"
  7. if defined PYTHON_EXE goto python_found
  8. where pythonw >nul 2>nul
  9. if not errorlevel 1 set "PYTHON_EXE=pythonw"
  10. if defined PYTHON_EXE goto python_found
  11. where python >nul 2>nul
  12. if not errorlevel 1 set "PYTHON_EXE=python"
  13. if defined PYTHON_EXE goto python_found
  14. echo No usable Python runtime was found.
  15. echo Please install Python 3.9 or later.
  16. pause
  17. exit /b 1
  18. :python_found
  19. "%PYTHON_EXE%" "%~dp0parse_logic_gui.py"
  20. exit /b %ERRORLEVEL%