我的节目只是:
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__
的分配。
为什么会这样?
答案 0 :(得分:1)
你很可能有一个名为``numpy that is masking the library
numpy`的文件夹。您不应将文件/文件夹命名为掩盖库模块。
我的猜测是__init__.py
位于名为numpy
的文件夹中,当你删除它时,Python停止将其识别为包,因此加载了正确的numpy
模块。 / p>