Python Forum

Full Version: Importing numPy
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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?
No. I thought it was part of python. I will go and see about installing it. Thanks