Reputation: 8573
I'm new to PyCharm, but have been using Python for a while. I'm using Python 3.3.2 with Numpy. I've just started to use PyCharm, and right now the editor is complaining about the following. If I use the following code for example,
a = np.random.normal(0, 1, 10)
then the normal
part is highlighted, and when I move the mouse over it it says "Cannot reference normal
in __init__.py
. Does anyone know why it cannot reference normal()
? I can assure you that this function does exist in the sub-module np.random
.
Upvotes: 2
Views: 768