pytorch ModuleNotFoundError:没有名为“torch._C”的模块

xzv2uavs  于 11个月前  发布在  其他
关注(0)|答案(4)|浏览(151)

我想导入torch,但是解释器返回这个结果,我不知道该怎么处理

Traceback (most recent call last):
  File "D:/Programing/tool/Python/learn_ml_the_hard_way/ML/scipy1.py", line 1, in <module>
    import  torch
  File "D:\Programing\python\Anaconda3.5\lib\site-packages\torch\__init__.py", line 84, in <module>
    from torch._C import *
ModuleNotFoundError: No module named 'torch._C'

字符串

ogq8wdun

ogq8wdun1#

我也遇到了同样的问题,并按照这个链接中的说明进行了操作。
如果需要,也可以使用此命令查找 Torch 路径:

sudo find / -iname torch

字符串

cygmwpex

cygmwpex2#

在我的例子中,我使用pip install安装了依赖项,但它不起作用。我使用conda install重新安装了torch,它似乎起作用了!

nwnhqdif

nwnhqdif3#

在我的情况下,这是与python版本的问题,创建python3.7环境,并重新安装它。工作正常

wz3gfoph

wz3gfoph4#

最初我是在一个Conda环境中运行得到这个错误。只是停用环境现在它的工作。

相关问题