Import the numpy package

0

In Windows 10, using Python 3.6.0. How do I import the numpy1.11.2 module? I already used the miniconda and the package was loaded but I am not successful in the Python 3.6.0 interactive python. Thankful

    
asked by anonymous 02.03.2017 / 14:14

1 answer

0

It can be two ways:

from numpy import *

or

import numpy

    
03.04.2017 / 14:46