当前位置:   article > 正文

Linux完全卸载PyTorch&重装(cuda11.1)_linux卸载pytorch

linux卸载pytorch


原因:网上看的很多卸载的,并没有把所有跟随PyTorch的包卸载干净,虽然可能后期不会出现较大问题,但本着干干净净,把所有带来的都删了。

1.命令行输入

conda uninstall pytorch
  • 1

在这里插入图片描述

2.命令行接着输入

conda uninstall pytorch-cuda
(这一步许多教程中没有,导致还有十多个包没删除)
  • 1
  • 2

在这里插入图片描述

3.可以看到卸载完后

查看包的命令:conda list
  • 1

在这里插入图片描述
之前跟随PyTorch的包都没了
在这里插入图片描述

4.下载PyTorch(cuda对应11.1,可以通过test_gpu.py的测试)

PyTorch官网【https://pytorch.org/get-started/previous-versions/】给出的命令:

# CUDA 11.1
pip install torch==1.8.0+cu111 torchvision==0.9.0+cu111 torchaudio==0.8.0 -f https://download.pytorch.org/whl/torch_stable.html
  • 1
  • 2

在这里插入图片描述
或者:

pip install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
  • 1

在这里插入图片描述

5.测试pyTorch是否在使用GPU

出现以下界面,安装配置成功!

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/972558
推荐阅读
相关标签
  

闽ICP备14008679号