On my Ubuntu 14.04LTS, for python3, I have
>>> import numpy
>>> import scipy
>>> numpy.__version__
'1.8.2'
>>> scipy.__version__
'0.13.3'
I want to update numpy and scipy to the most recent version 1.9.2 and 0.16.0, I tried with the following commands
sudo pip3 install --upgrade numpy
sudo pip3 install --upgrade scipy
both commands ran successfully, but the version numbers didn't change to 1.9.2 and 0.16.0 at all for both python packages (after restarting the computer). Anyone knows how to update to the most version? Thank you very much!!