Issue
Why is the version of scipy that comes from apt-get on ubuntu only 13.3? Scipy is now on version 16! I need scipy.optimize.linprog
, which was first available in version 15. What's the easiest way to perform the update?
Solution
Just paste it to your terminal
sudo pip install --upgrade scipy
Answered By - orvi