Files
WQ_GUI/check_env.bat
2026-04-08 15:25:08 +08:00

11 lines
303 B
Batchfile

@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