# 虚拟化环境
conda create -n pytorch python=3.8
# 激活环境
conda activate pytorch
# 取消激活环境
conda deactivate pytorch
# 删除环境
conda env remove --name pytorch
# 安装 pytorch
pip install torch===1.7.1+cu110 torchvision===0.8.2+cu110 torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html
# 安装 opencv-python
pip install opencv-python
#安装gym
pip install gym
# 安装 atari
pip install --no-index -f https://github.com/Kojoley/atari-py/releases atari_py