[Deprecated] Setting up NVIDIA Isaac Gym on Ubuntu 22.04 / 20.04
Last updated
conda create --name gym python=3.8
conda activate gymcd <path-to-isaacgym-folder>/python
pip install -e .pip install protobuf==3.20# solve libpython3.8.so.1.0 not found issue
export LD_LIBRARY_PATH=$CONDA_PREFIX/lib/:$LD_LIBRARY_PATH
# solve "generated code is out of date and must be regenerated with protoc >= 3.19.0" issue
# export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=pythonsource env.shcd <path-to-isaacgym-folder>/python/examplespython joint_monkey.py --asset_id 0