Files
WQ_GUI/check_env.bat

11 lines
303 B
Batchfile
Raw Normal View History

2026-04-08 15:25:08 +08:00
@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