Python numpy无法从模块导入?

时间:2015-09-03 07:29:29

标签: python python-import

我的节目只是:

import numpy as np
np.zeros(2)

它位于__init__.py

的文件夹中

如果我将其作为python a.py运行,我会:

Traceback (most recent call last):
  File "a.py", line 2, in <module>
    np.zeros(2)
AttributeError: 'module' object has no attribute 'zeros'

如果我删除__init__.py,它就可以了。 __init__.py中唯一的一行是对__all__的分配。

为什么会这样?

1 个答案:

答案 0 :(得分:1)

你很可能有一个名为``numpy that is masking the library numpy`的文件夹。您不应将文件/文件夹命名为掩盖库模块。

我的猜测是__init__.py位于名为numpy的文件夹中,当你删除它时,Python停止将其识别为包,因此加载了正确的numpy模块。 / p>