Import of numpy package

Asked

Viewed 1,198 times

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

  • 2

    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].

  • 1

    Ask your question what error is appearing when trying to import numpy, so it will be easier to help.

1 answer

1

It can be two ways:

from numpy import *

or

import numpy

Browser other questions tagged

You are not signed in. Login or sign up in order to post.