当前位置:   article > 正文

Pytorch更新版本与卸载常用指令_更新torch版本

更新torch版本

一、更新Pytorch和torchvision

1、使用Pip更新Pytorch和torchvision

pip list --outdated --format=legacy
pip install --upgrade pytorch torchvision
  • 1
  • 2

2、使用conda更新Pytorch和torchvision

conda config --add channels soumith
conda update pytorch torchvision
  • 1
  • 2

二、安装指定版本Pytorch

使用conda安装指定版本

# =后边是版本号
conda install pytorch=10.0 -c soumith
  • 1
  • 2

使用pip安装指定版本

pip3 install https://download.pytorch.org/whl/cu100/torch-1.1.0-cp37-cp37m-linux_x86_64.whl
pip3 install https://download.pytorch.org/whl/cu100/torchvision-0.3.0-cp37-cp37m-linux_x86_64.whl

  • 1
  • 2
  • 3

三、卸载Pytorch

1、使用conda卸载Pytorch

conda uninstall pytorch
conda uninstall libtorch
  • 1
  • 2

2、使用pip卸载Pytorch

pip uninstall torch
  • 1

四、查看当前pytorch版本

python
>>>import torch
>>>print(torch.__version__)
  • 1
  • 2
  • 3

五、查看pytorch对应的cuda版本

python
>>>import torch
>>>torch.version.cuda
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/975477
推荐阅读
相关标签
  

闽ICP备14008679号