分享
Installation
输入“/”快速插入内容
Installation
飞书用户8895
6月4日修改
Install Linux dependencies
代码块
Bash
sudo apt update
sudo apt install redis-server
Create Virtual Env
Generate a new Python virtual environment with Python 3.8
代码块
Bash
conda create -n engineai_rl_ws python=3.8
Install Isaac Gym
•
Download and install
Isaac Gym
Preview 4 from
https://developer.nvidia.com/isaac-gym
.
◦
cd isaacgym/python && pip install -e .
•
Adapt to latest
numpy
sed -i 's/np.float/float/' isaacgym/torch_utils.py
•
Run an example with
cd examples && python 1080_balls_of_solitude.py
.
•
Consult
isaacgym/docs/index.html
for troubleshooting.
Install engineai_rl_workspace
1.
Clone engineai_rl_workspace
◦
git clone
https://github.com/engineai-robotics/engineai_rl_workspace.git
2.
Install engineai_gym:
◦
cd engineai_gym && pip install -e .
3.
Install engineai_rl:
◦
cd engineai_rl && pip install -e .
4.
Install engineai_rl_lib:
◦
cd engineai_rl_lib && pip install -e .
5.
Install engineai_rl_workspace:
◦
pip install -e .