文章目录
配置
要求:
Ubuntu 18.04 or 20.04
Python 3.6, 3.7 or 3.8
Minimum NVIDIA driver version: Linux: 470
个人配置:
Ubuntu 20.04
nvidia-driver-525
Python 3.7
一、Isaac Gym安装
1. 注册–下载Isaac Gym Preview 4 release
官方网站 https://developer.nvidia.com/isaac-gym
官方安装说明位于下述路径中
./isaacgym/docs/install.html
2. 方法一
使用anaconda创建环境
conda create -n (your env name) python==3.7
激活conda环境
conda activate (your env name)
安装PyTorch
conda install pytorch torchvision torchaudio -c pytorch
<