I've just installed a NumPy in my computer and everything in Python consol is OK- https://i.stack.imgur.com/DFC4O.png
but in every interpreter i have the same problem: https://i.stack.imgur.com/ANxG2.png
Thanks for help!
I've just installed a NumPy in my computer and everything in Python consol is OK- https://i.stack.imgur.com/DFC4O.png
but in every interpreter i have the same problem: https://i.stack.imgur.com/ANxG2.png
Thanks for help!
You called your program file numpy.py
so the file is trying to import itself rather than the real numpy
module. Call your file something like numpy_test.py
instead.