Python找不到Torch模块

问题描述 投票:0回答:1

我只是想运行一个.py文件,不知道为什么找不到Torch模块。我很确定所有模块都是最新的,而且我可以在我的lib文件夹里看到torch模块......

Traceback (most recent call last):
  File "ptb-lm.py", line 86, in <module>
    import torch
  File "C:\Users\Public\Anaconda3\lib\site-packages\torch\__init__.py", line 80, in <module>
    from torch._C import *
ImportError: DLL load failed: The specified module could not be found.

说实话,我还是很困惑,什么时候为什么要用conda或者pip,但是我确实检查了这两个模块都是最新的!我只是想运行一个程序,但是我不知道为什么会找不到Torch模块。

python anaconda pytorch conda torch
1个回答
0
投票

试着用anaconda来安装Torch。

使用这个链接来下载 https:/pytorch.orgget-startedlocally。

© www.soinside.com 2019 - 2024. All rights reserved.