Initial commit of WQ_GUI

This commit is contained in:
2026-04-08 15:25:08 +08:00
commit 91e36407ae
302 changed files with 40872 additions and 0 deletions

10
check_env.bat Normal file
View File

@ -0,0 +1,10 @@
@echo off
echo 检查insect conda环境...
if exist "%USERPROFILE%\.conda\envs\insect\python.exe" (
echo insect环境存在
echo Python路径: %USERPROFILE%\.conda\envs\insect\python.exe
"%USERPROFILE%\.conda\envs\insect\python.exe" --version
) else (
echo insect环境不存在
)
pause