当前位置: 代码迷 >> 综合 >> AttributeError: 'numpy.ufunc' object has no attribute '__module__'问题解决方案
  详细解决方案

AttributeError: 'numpy.ufunc' object has no attribute '__module__'问题解决方案

热度:94   发布时间:2023-12-16 01:45:21.0

出现此问题的主要原因是numpy的版本造成的,可能是版本过高,也能是版本过低:
在这里插入图片描述
需要卸载原来的numpy进行限定版本的安装:

pip uninstall numpypip install numpy==1.14或1.15

最后问题就解决了。

  相关解决方案