linux系统下 ModuleNotFoundError: No module named 'torch.library'
时间: 2023-11-12 08:59:55 浏览: 247
win10下 利用pip 安装pytorch及遇到的一些问题
这个错误提示表明你的代码中使用了 torch.library 模块,但是该模块并不存在。可能的原因是你没有安装 torch 库或者版本不兼容。你可以尝试使用以下命令安装最新版本的 torch 库:
```
pip install torch
```
如果你已经安装了 torch 库,可以尝试更新到最新版本:
```
pip install --upgrade torch
```
如果问题仍然存在,你可以检查一下你的代码中是否有拼写错误或者其他语法错误。
阅读全文