增加日志功能,增加打包成exe功能,点击exe就可以使用

This commit is contained in:
2026-03-03 14:07:54 +08:00
parent 9f54a0cb2e
commit b47962e5c8
23 changed files with 172395 additions and 65 deletions

17
build_exe.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
chcp 65001 >nul
echo 正在打包 DTU-RemoteLCD 为 exe ...
echo.
rem 使用当前环境中的 python 和 pip而不是系统默认 pip
python -m pip install pyinstaller -q
python -m PyInstaller remo_disp_server.spec --noconfirm
if %ERRORLEVEL% equ 0 (
echo.
echo 打包完成。可执行文件: dist\remo_disp_server.exe
echo 直接双击运行,或在命令行: dist\remo_disp_server.exe [装置IP]
) else (
echo 打包失败,请检查错误信息。
exit /b 1
)