I am using Ubuntu 14.04.2 LTS on a 64-bit machine. I noticed that whenever I update and upgrade Ubuntu using sudo apt-get update && sudo apt-get upgrade the numpy version in Python reverts back to 1.8.2. Is this a coincidence or there is some systemic problem associated with Ubuntu upgrade. Previously, I had numpy 1.9.2 installed. Btw, Scipy, matplotlib, etc remain untouched.
Asked
Active
Viewed 1,646 times
0
-
How and to where in the filesystem did you install numpy 1.9.2? – steeldriver Mar 23 '15 at 22:25
-
I used pip in the following way: sudo pip install numpy. I don't know where in the file system does it install – user3317287 Mar 24 '15 at 00:12
1 Answers
0
It sounds like you have the python-numpy package installed in Ubuntu, and you also installed the package using pip. You probably want to remove the python-numpy package. See apt-get install vs pip install for more information.

Tommy Trussell
- 971