| 12345678910111213141516171819202122232425 |
- @echo off
- cd /d "%~dp0"
- echo 游戏配置管理工具 - 多配置表支持
- echo Starting GUI tool...
- echo.
- python config_manager.py
- if errorlevel 1 (
- py config_manager.py
- if errorlevel 1 (
- python3 config_manager.py
- if errorlevel 1 (
- echo.
- echo Cannot start Python environment
- echo Please ensure Python is installed and added to PATH
- echo Or run manually: py config_manager.py
- echo.
- echo If pandas library is not installed, run:
- echo pip install pandas openpyxl
- echo.
- pause
- )
- )
- )
|