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?
Asked
Active
Viewed 1.5k times
3 Answers
2
It will be based on your installation.
- First: try
pip install --upgrade numpy
- also try here: http://www.lfd.uci.edu/~gohlke/pythonlibs/
- also see: Can't install numpy 1.8 with python 2.7 under windows 7

Community
- 1
- 1

Dwight J. Browne
- 378
- 2
- 9
-
1'pip install -upgrade numpy' gave me an error saying "no such option: -u" but 'pip install --upgrade numpy' did the work for me – owl Feb 15 '16 at 01:37
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

Harun ERGUL
- 5,770
- 5
- 53
- 62
0
It seems you have installed numpy 1.7
using windows binary installer
, as you can see numpy
uninstall in Control Panel.
So best way to upgrade numpy
is to uninstall your current version and download windows binary of recent desired version from:
This link has all numpy
version and most have windows binary ready for download.

akhileshmoghe
- 603
- 8
- 21