(完全解决)Key already registered with the same priority: GroupSpatialSoftmax

首先,这个问题可以肯定的是:大家都是因为反复安装又删除pytorch导致的。

结果就是:

import torch

如果是pycharm,然后报上述的错误,如果是Jupyter,不但会报错,而且直接整个notebook都会挂掉,必须关掉重启。

解决办法:
1.

pip uninstall torch
pip uninstall torch

你没有看错,重复运行两次。
(完全解决)Key already registered with the same priority: GroupSpatialSoftmax_第1张图片
此时jupyter不再报上述错误,而是一个正常的错误了。
(完全解决)Key already registered with the same priority: GroupSpatialSoftmax_第2张图片

2.

conda uninstall pytorch

(完全解决)Key already registered with the same priority: GroupSpatialSoftmax_第3张图片
此时,错误还是一样的。
(完全解决)Key already registered with the same priority: GroupSpatialSoftmax_第4张图片
3.
重新安装即可:

conda install pytorch torchvision torchaudio cudatoolkit=11.1

上述命令,填写你自己的,如果你忘了怎么安装了,可以参考:(最新最全)windows使用anaconda安装pytorch进行深度学习并使用GPU加速。

不过,奇怪的是,好像有缓存似的,这步安装1秒就完成了,根本没有什么下载进度(2个G),如下:
(完全解决)Key already registered with the same priority: GroupSpatialSoftmax_第5张图片
安装完成后,就应该是万事大吉了。

(完全解决)Key already registered with the same priority: GroupSpatialSoftmax_第6张图片

你可能感兴趣的:(安装以及错误,pytorch,pycharm,深度学习)