-
Hello :) I'm currently using Isaac Sim 5.0 and the latest version of Isaac Lab (2.2). When I run isaaclab.bat from version 2.2, I get the below error message. However, it works fine with version 2.1. Do you know what might be causing this? 'reserved.' is not recognized as an internal or external command, it’s because the closing parenthesis in the FOR /F (...) block is unexpectedly placed. Is there no fix for this? thanks a lot :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After modifying this part in the isaaclab.bat file, it started working. I don't know why, but I'm leaving this here in case someone else encounters the same issue.rem check if the environment exists
|
Beta Was this translation helpful? Give feedback.
After modifying this part in the isaaclab.bat file, it started working. I don't know why, but I'm leaving this here in case someone else encounters the same issue.
rem check if the environment exists
call conda env list | findstr /c:"%env_name%" >nul
if %errorlevel% equ 0 (
echo [INFO] Conda environment named '%env_name%' already exists.
) else (
echo [INFO] Creating conda environment named '%env_name%'...
echo [INFO] Installing dependencies from %ISAACLAB_PATH%\environment.yml
rem -----------------------------------------------
rem patch Python version if needed, but back up first
rem -----------------------------------------------
copy "%ISAACLAB_PATH%\environment.yml" "%ISAACLAB_PATH%\…