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
Post a Comment