import torch报错module 'numpy' has no attribute 'ndarray',什么原因,如何解决
时间: 2023-09-24 21:05:56 浏览: 438
Pycharm中import torch报错的快速解决方法
这个错误通常是因为你的numpy版本过低导致的。请尝试更新numpy版本到1.17以上,可以通过以下命令更新:
```
pip install -U numpy
```
如果更新后还是出现该错误,请检查你的代码是否有重命名了numpy模块中的ndarray,比如将下面的代码:
```
import numpy as np
np.ndarray = my_array
```
修改为:
```
import numpy as np
my_array = np.ndarray
```
如果以上方法都没有解决问题,请提供更多代码和报错信息,以便更好地帮助你解决问题。
阅读全文