11 lines
303 B
Batchfile
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
|