win11 isaacsim 5.1.0 和lab配置

这里的环境是win11,默认配置isaacsim5.1到C盘以及安装isaaclab2.3.0到D盘。梳理流程后,也可以将目前的模块安装到其他路径。

1. 下载和安装sim

https://docs.isaacsim.omniverse.nvidia.com/latest/introduction/examples.html

下载软件包后运行命令:

复制代码
mkdir C:\isaacsim
cd %USERPROFILE%/Downloads
tar -xvzf "isaac-sim-standalone-5.1.0-windows-x86_64.zip" -C C:\isaacsim
cd C:\isaacsim
post_install.bat

启动:

复制代码
isaac-sim.bat

2. 安装lab

https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/binaries_installation.html

首先测试文件关联,这里默认isaacsim的目录在C盘:

复制代码
:: Isaac Sim root directory
set ISAACSIM_PATH="C:\isaacsim"
:: Isaac Sim python executable
set ISAACSIM_PYTHON_EXE="%ISAACSIM_PATH:"=%\python.bat"

测试启动sim:

复制代码
:: note: you can pass the argument "--help" to see all arguments possible.
%ISAACSIM_PATH%\isaac-sim.bat

测试运行standalone脚本:

复制代码
:: checks that python path is set correctly
%ISAACSIM_PYTHON_EXE% -c "print('Isaac Sim configuration is now complete.')"
:: checks that Isaac Sim can be launched from python
%ISAACSIM_PYTHON_EXE% %ISAACSIM_PATH%\standalone_examples\api\isaacsim.core.api\add_cubes.py

由于我曾经安装过4.5, 5.0,所以尝试clean掉之前的缓存等文件,避免冲突:

复制代码
%ISAACSIM_PATH%\isaac-sim.bat --reset-user

下载lab包:

复制代码
git clone https://github.com/isaac-sim/IsaacLab.git

将之前安装进C盘的sim路径关联到目前的Lab仓库

复制代码
:: enter the cloned repository
cd IsaacLab
:: create a symbolic link - requires launching Command Prompt with Administrator access
mklink /D _isaac_sim %ISAACSIM_PATH%

:: For example:
:: Option 1: If pre-built binaries were installed:
:: mklink /D _isaac_sim C:\isaacsim
::
:: Option 2: If Isaac Sim was built from source:
:: mklink /D _isaac_sim C:\IsaacSim\_build\windows-x86_64\release

准备conda环境,安装好anaconda/miniconda后再lab目录中执行:

复制代码
:: Option 1: Default environment name 'env_isaaclab'
isaaclab.bat --conda  :: or "isaaclab.bat -c"
:: Option 2: Custom name
isaaclab.bat --conda my_env  :: or "isaaclab.bat -c my_env"

进入conda env, 安装isaaclab仓库:

复制代码
isaaclab.bat --install

这里最好有梯子,如果报错就重复运行安装命令,直到出现:

测试环境:

复制代码
isaaclab.bat -p scripts\tutorials\00_sim\create_empty.py
相关推荐
AI探索者10 小时前
LangGraph StateGraph 实战:状态机聊天机器人构建指南
python
AI探索者10 小时前
LangGraph 入门:构建带记忆功能的天气查询 Agent
python
FishCoderh12 小时前
Python自动化办公实战:批量重命名文件,告别手动操作
python
躺平大鹅12 小时前
Python函数入门详解(定义+调用+参数)
python
曲幽13 小时前
我用FastAPI接ollama大模型,差点被asyncio整崩溃(附对话窗口实战)
python·fastapi·web·async·httpx·asyncio·ollama
两万五千个小时17 小时前
落地实现 Anthropic Multi-Agent Research System
人工智能·python·架构
哈里谢顿19 小时前
Python 高并发服务限流终极方案:从原理到生产落地(2026 实战指南)
python
用户8356290780511 天前
无需 Office:Python 批量转换 PPT 为图片
后端·python
markfeng81 天前
Python+Django+H5+MySQL项目搭建
python·django
GinoWi1 天前
Chapter 2 - Python中的变量和简单的数据类型
python