0
How do I import NumPY in VSCode?
I have been trying to import NumPY in VSCode but it hasn’t been possible or I am getting it all wrong? Any suggestions??
2 Respuestas
+ 2
You may have to install it first with pip (the python library manager tool). The default python distribution doesn't include numpy.
Typically you would enter in command line:
pip install numpy
+ 1
import numpy as usual should work. Is it only numpy you cannot import or other modules too?