AttributeError: module 'numpy' has no attribute '__version__'
时间: 2023-09-22 21:12:11 浏览: 55
解决:slate报错 AttributeError: module ‘importlib._bootstrap’ has no attribute ‘SourceFileLoade
这个错误通常表示您正在尝试访问 numpy 模块的版本属性时出现问题。可能是因为 numpy 模块没有正确安装或已损坏。
您可以尝试重新安装 numpy 模块,可以使用以下命令:
```
pip uninstall numpy
pip install numpy
```
如果您使用的是虚拟环境,请确保在正确的虚拟环境中运行这些命令。
阅读全文