ubuntu16.04下虚拟环境安装指定版本的pytorch

虚拟环境安装指定版本的pytorch

  • 安装
bash + 制定版本的Anconda.sh
  • 创建虚拟环境,qq指的是你的虚拟环境名称(随意)
conda create -n qq python=3.6.1
  • 进入虚拟环境qq
source activate qq
  • 安装指定版本pytorch,我这里安装的是1.6版本
conda install pytorch==1.6.0 torchvision==0.7.0 cudatoolkit=10.1

注意,此时仅仅是在终端的torch版本改变成1.6而已!!!

  • 还需要jupyter notebook中添加虚拟环境
conda install nb_conda

恭喜!这样你就可以在jupyter notebook中使用1.6版本的torch了

python查看pytorch版本

换清华源下载pytorch

猜你喜欢

转载自blog.csdn.net/weixin_48622537/article/details/114156348
今日推荐