When installing the numpy and cipy libraries via pip, the following messages are displayed in the command line:

numpy failed install result

As I understand it, it is recommended to update pip here. How can this be done? Or is the problem something different and can it be somehow solved?

  • one
    The text of the error should be copied as text (so that other people can find this question). If you are not able to copy, ask a separate question specifically about this (how to copy text to the Windows console). - jfs

2 answers 2

Better, upgrade (pip) pip install upgrade pip and see that the packages match the versions of Python 2 or Python 3. And whl files to download, then unnecessary. Through the terminal everything is solved.

    The problem was solved by copying numpy-1.11.2 + mkl-cp35-cp35m-win32.whl to the Scripts folder.

    • 2
      You do not need to hand whl-files somewhere to copy and especially not in special folders such as Scripts. This is a regular file. To pass as an argument on the command line, just enter the path. If you downloaded to the С:\Users\you\Downloads folder, then from any folder you can do: pip install С:\Users\you\Downloads\numpy*.whl (if it says that the pip is not found command, then ask a question specifically about this is the solution: set the Scripts folder in% PATH%). - jfs