# Option 1: With SSH git clone git@github.com:NVIDIA-Omniverse/orbit.git # Option 2: With HTTPS git clone https://github.com/NVIDIA-Omniverse/orbit.git
2. 创建索引连接
1 2 3 4
# enter the cloned repository cd orbit # create a symbolic link ln -s ${ISAACSIM_PATH} _isaac_sim
创建 Conda 环境
1. 创建环境与自定义环境名称
1 2 3 4
# Option 1: Default name for conda environment is 'orbit' ./orbit.sh --conda # or "./orbit.sh -c" # Option 2: Custom name for conda environment ./orbit.sh --conda my_env # or "./orbit.sh -c my_env"
# Option 1: Install all dependencies ./orbit.sh --extra # or "./orbit.sh -e" # Option 2: Install only a subset of dependencies # note: valid options are 'rl_games', 'rsl_rl', 'sb3', 'robomimic', 'all' ./orbit.sh --extra rsl_rl # or "./orbit.sh -e rsl_r"
验证安装
1 2 3 4 5 6
# Option 1: Using the orbit.sh executable # note: this works for both the bundled python and the virtual environment ./orbit.sh -p source/standalone/tutorials/00_sim/create_empty.py
# Option 2: Using python in your virtual environment python source/standalone/tutorials/00_sim/create_empty.py