I am unable to run NumPy in PyCharm, BUT it works fine from Terminal (Mac OS). How do I get NumPy to work in PyCharm?
This is the error message that I am getting from PyCharm:
Traceback (most recent call last): 
  File "/Users/giridhar/PycharmProjects/numpy/testfile", line 12, 
    in a = np.array([1, 2, 3]) # Create a rank 1 array 
AttributeError: module 'numpy' has no attribute 'array'
 
     
    