下载anaconda, https://repo.anaconda.com/archive/Anaconda3-2022.10-Linux-x86_64.sh
sh Anaconda3-2022.10-Linux-x86_64.sh
安装完anaconda,配置一下环境变量
在home/用户,修改.bashrc
在最下面
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/anaconda3/lib
然后激活
source ~/.bashrc
配置pip源环境
在home/用户,下面创建.pip文件夹
底下创建pip.conf
[global]
index-url=http://pypi.douban.com/simple
[install]
use-mirrors=true
mirrors=http://pypi.douban.com/simple
trusted-host=pypi.douban.com
安装pytorch
pip install torch==1.8.2 torchvision==0.9.2 torchaudio==0.8.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cu111
安装依赖
pip install opencv-python
pip install tensorboard