Python Forum
Importing numPy - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Importing numPy (/thread-29212.html)



Importing numPy - Milfredo - Aug-23-2020

I am new here and learning Python. Tried to import numPy and error said:

Traceback (most recent call last):
File "hello.py", line 6, in <module>
import numPy as np
ModuleNotFoundError: No module named 'numPy'

Is this not used anymore?

Thanks


RE: Importing numPy - ndc85430 - Aug-23-2020

First of all, the module is numpy (note the casing of the letters). Also, it's a third-party library; did you install it already?


RE: Importing numPy - Milfredo - Aug-23-2020

No. I thought it was part of python. I will go and see about installing it. Thanks