14.04 - How to update to the latest numpy and scipy on Ubuntu 14.04LTS - Ask Ubuntu


on ubuntu 14.04lts, python3, have

 >>> import numpy  >>> import scipy  >>> numpy.__version__  '1.8.2'  >>> scipy.__version__  '0.13.3' 

i want update numpy , scipy recent version 1.9.2 , 0.16.0, tried following commands

sudo pip3 install --upgrade numpy sudo pip3 install --upgrade scipy 

both commands ran successfully, version numbers didn't change 1.9.2 , 0.16.0 @ both python packages (after restarting computer). knows how update version? thank much!!

i found @david foerster's comment quite helpful. had python3-numpy , python3-scipy installed, overriding later install, issued:

sudo apt-get remove python3-numpy 

and proper versions there, revealed by

pip3 show numpy 

Comments

Popular posts from this blog

download - Firefox cannot save files (most of the time), how to solve? - Super User

windows - "-2146893807 NTE_NOT_FOUND" when repair certificate store - Super User

sql server - "Configuration file does not exist", Event ID 274 - Super User