web-dev-qa-db-ja.com

PyTorchをアンインストールするにはどうすればよいですか?

すべてのPyTorch依存関係をアンインストールおよび削除するコマンドが見つかりません。 pytorch.org ウェブサイトでも。

私はPyTorchをインストールしました

conda install pytorch torchvision cuda80 -c soumith
7
vincent

anaconda docs から、conda uninstall

試して

conda uninstall pytorch torchvision cuda80 -c soumith

または、 pytorch docs を提案します

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

使用することもできます

conda remove torch torchvision

これは削除指定されたパッケージ(ここではtorchとtorchvision)およびトーチとトーチビジョン(ある場合)。

追伸conda uninstallconda removeのエイリアスです。

6
kmario23

Pytorch githubリポジトリの CONTRIBUTING.md に基づく正しいコマンドセットは次のとおりです。


既存のすべてのpytorchインストールをアンインストールします

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

次のcondaコマンドを使用して、pytorchインストールを安全に削除できます。

conda uninstall pytorch-cpu torchvision-cpu pytorch

最近、良いツールを見つけました!

pip install pip-autoremove

このツールは、削除する必要があるすべてのツールを削除できます。たとえば、トーチを削除する必要がある場合は、トーチも削除できます!

Usage: pip-autoremove [OPTION]... [NAME]...

Options:
  --version     show program's version number and exit
  -h, --help    show this help message and exit
  -l, --list    list unused dependencies, but don't uninstall them.
  -L, --leaves  list leaves (packages which are not used by any others).
  -y, --yes     don't ask for confirmation of uninstall deletions.
0
Dany