How to install Numpy via PIP windows 7 64 bit [closed]

2

Good afternoon how do I install Numpy via pip. I downloaded Python 2.7.13 and I do not know how to install via pip.

    
asked by anonymous 02.06.2017 / 17:46

2 answers

1

Just run pip install numpy . Have you tried this? if it does not work, paste the error message.

To get a little ahead of the possible errors:

  • If the message says that the pip is not installed, but you are sure that it is already installed, add it to the environment variables (Right click on My Computer > Properties > Advanced System Settings> Environment Variables > ; New ...> paste the path of pip .

On my computer it is located in this path: C:\Python27\Scripts .

  • If pip is not installed, enter the link , download the file get-pip.py and run it using python get-pip.py .
02.06.2017 / 17:58
0

It's also interesting to install Python (x, y) ( link ) that comes with all numeric libraries already installed in addition to several other important numerical, scientific, engineering and statistical tools.

In the Python (x, y) page there are other important definitions: link

    
02.06.2017 / 18:01