How can l uninstall PyTorch?

后端 未结 6 1090
走了就别回头了
走了就别回头了 2020-12-17 10:04

I can\'t find any command to uninstall and remove all PyTorch dependencies. Even on the pytorch.org website.

I installed PyTorch with

conda install p         


        
6条回答
  •  天命终不由人
    2020-12-17 10:42

    From the anaconda docs, you can uninstall with conda uninstall

    Try

    conda uninstall pytorch torchvision cuda80 -c soumith
    

    Alternatively, the pytorch docs suggest

    conda uninstall pytorch
    pip uninstall torch
    pip uninstall torch # run this command twice
    

提交回复
热议问题