BenXu123456 commited on
Commit
733dd5d
·
verified ·
1 Parent(s): 9fb3561

README: fix pkg names — cuRobo install is `nvidia-curobo`, IsaacSim must be pip 5.1 (not Omniverse Launcher 5.0.0-rc)

Browse files
Files changed (1) hide show
  1. README.md +14 -7
README.md CHANGED
@@ -56,22 +56,29 @@ copies of the repo versions — the canonical ones live in the repo.
56
  conda create -n env_isaaclab python=3.11 -y
57
  conda activate env_isaaclab
58
 
59
- # 1.1 IsaacSim 5.1 (NOT 4.x — the v4 collector uses 5.1 APIs)
60
- pip install --extra-index-url=https://pypi.nvidia.com isaacsim==5.1.0
 
 
 
61
  # Also accept the EULA when prompted on first run.
62
 
63
- # 1.2 cuRobo 0.8 (NOT 0.7 the planner uses MotionPlanner / SceneCfg.create API)
64
- pip install curobo==0.8.0
 
 
65
 
66
  # 1.3 Other deps used by the collector + retry wrapper
67
  pip install h5py scipy 'numpy<2' termcolor pyyaml requests usd-core
68
  ```
69
 
70
- Verify the install:
71
  ```bash
72
- python -c "from isaacsim import SimulationApp; print('IsaacSim OK')"
73
- python -c "import curobo; print('cuRobo OK')"
74
  ```
 
 
75
 
76
  ### 2. Repo (gate3-curobo-ik branch)
77
 
 
56
  conda create -n env_isaaclab python=3.11 -y
57
  conda activate env_isaaclab
58
 
59
+ # 1.1 IsaacSim 5.1 — install the PIP package (NOT the Omniverse Launcher version
60
+ # under /home/<user>/isaacsim/). The pip package is what `from isaacsim import
61
+ # SimulationApp` resolves to. Dev box ref: isaacsim==5.1.0.0.
62
+ # If a 5.0.0-rc version is already installed, force-upgrade:
63
+ pip install --upgrade --extra-index-url=https://pypi.nvidia.com isaacsim==5.1.0
64
  # Also accept the EULA when prompted on first run.
65
 
66
+ # 1.2 cuRobo 0.8 (pip package is `nvidia-curobo`, NOT `curobo`. NOT 0.7 — the
67
+ # planner uses MotionPlanner / SceneCfg.create API which 0.7 lacks.)
68
+ # Dev box ref: nvidia-curobo==0.8.0.post1.dev26
69
+ pip install --extra-index-url=https://pypi.nvidia.com nvidia-curobo
70
 
71
  # 1.3 Other deps used by the collector + retry wrapper
72
  pip install h5py scipy 'numpy<2' termcolor pyyaml requests usd-core
73
  ```
74
 
75
+ Verify the install (both must print without error):
76
  ```bash
77
+ python -c "import isaacsim; from isaacsim import SimulationApp; print('IsaacSim 5.1 OK')"
78
+ python -c "from curobo.motion_planner import MotionPlanner; print('cuRobo 0.8 OK')"
79
  ```
80
+ Note: pip package name is `nvidia-curobo` but the Python import name is
81
+ `curobo` — this is the standard NVIDIA naming pattern.
82
 
83
  ### 2. Repo (gate3-curobo-ik branch)
84