Last update 2023.12.29 by Daegeol Ko, UNIST
code by https://github.com/leggedrobotics/legged_gym
code by https://github.com/Improbable-AI/walk-these-ways
conda create -n <env_name> python=3.8
in here, for example, <env_name> is ‘legged_gym’. You can type only some name
pip3 install torch==1.10.0+cu113 torchvision==0.11.1+cu113 torchaudio==0.10.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
if you have any problem with cuda and pytorch, you have to set these for your graphic card
a. Download and install Isaac Gym Preview 4 from https://developer.nvidia.com/isaac-gym
b. click join now button. Then you have to sign in. after log in, click agree button and download it.
Click Member area and agree it.
cd isaacgym/python && pip install -e .
cd examples && python 1080_balls_of_solitude.py
In this step, you have to meet
without this error, you must have problem with graphic driver error.So, when you meet other error, you have to type
nvidia-smi
and check output is right.
you have to
pip install gym
twice. In Home dir and isaac gym dir.
this error be occured, because Isaacgym creator makes it run at python version 3.11. so we have to change it for our conda python version. So, we install it home and solving crash.
git clone https://github.com/Lab-of-AI-and-Robotics/Legged_gym-Installation
cd rsl_rl && git checkout v1.0.2 && pip install -e .
if you meet error that there is no git, then
pip install git
git clone https://github.com/leggedrobotics/legged_gym
cd legged_gym && pip install -e .
in home directory,
cd legged_gym
python legged_gym/scripts/train.py –task=anymal_c_flat
then you have to meet many error. Below is manual that can solve errors.
setup numpy version with your python version.
pip install numpy==1.23.0
pip install tensorboard
pip install setuptools=59.5.0
this is advanced from legged_gym
at home,
git clone https://github.com/Improbable-AI/walk-these-ways
cd walk-these-ways
pip install -e .