How to properly upgrade numpy on Windows 7?

15,252

Solution 1

It will be based on your installation.

Solution 2

My suggestion is uninstall numpy and install again. When you uninstall, it will delete the older version of numpy from your computer. When you install with pip again it will install recent version of numpy.

pip uninstall numpy #removes numpy with older version
pip install   numpy #install new version of numpy
Share:
15,252
alwbtc
Author by

alwbtc

Updated on June 04, 2022

Comments

  • alwbtc
    alwbtc almost 2 years

    It seems the whole world is using Linux or Mac, and I couldn't find any answer on the web to question "How to properly upgrade numpy on Windows 7?". I use Windows 7, python 2.7 and numpy 1.7.1, how do I upgrade to numpy 1.9.1 on my machine?