0
In Windows 10, using Python 3.6.0. How do I import the numpy1.11.2 module? I already used miniconda and the package was loaded but I do not get success in the interactive python Python 3.6.0. Grateful
0
In Windows 10, using Python 3.6.0. How do I import the numpy1.11.2 module? I already used miniconda and the package was loaded but I do not get success in the interactive python Python 3.6.0. Grateful
1
It can be two ways:
from numpy import *
or
import numpy
Browser other questions tagged python
You are not signed in. Login or sign up in order to post.
Use/import is simple:
import numpy as np
, for example. If you have an error, enter it. Saying "I do not succeed" is insufficient, and makes your question unclear. Ah, if you haven’t done it yet, be sure to do the [tour] and read [Ask].– Luiz Vieira
Ask your question what error is appearing when trying to import numpy, so it will be easier to help.
– Marlysson