环境
Ubuntu16.04 cuda 9.0 python3.7 conda3
装torch简单的方法
#加快conda 下载速度
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --set show_channel_urls yes
#建虚拟环境
conda create -n py37_torch python=3.7
conda activate py37_torch
#根据https://pytorch.org/get-started/locally/官网指导安装torch
conda install pytorch torchvision cudatoolkit=9.0 -c pytorch
#但是……下载还是很慢
#果断用pip
pip install torch torchvision -i https://pypi.tuna.tsinghua.edu.cn/simple
#最简单安装方法,完成!