Can't upgrade Scipy

2019-01-17 22:12发布

I'm trying to upgrade Scipy from 0.9.0 to 0.12.0. I use the command:

sudo pip install --upgrade scipy

and I get all sorts of errors which can be seen in the pip.log file here and I'm unfortunately not python-savvy enough to understand what's wrong. Any help will be appreciated.

4条回答
爷的心禁止访问
2楼-- · 2019-01-17 22:55

I had the same problem upgrading from scipy 0.9 to 0.13.3, and I solved it using the following answer and installing:

sudo apt-get install libblas-dev

sudo apt-get install liblapack-dev

sudo apt-get install gfortran

查看更多
小情绪 Triste *
3楼-- · 2019-01-17 23:03

The error messages all state the same: You lack BLAS (Basic Linear Algebra Subroutines) on your system, or scipy cannot find it. When installing packages from source in ubuntu, as you are effectively trying to do with pip, one of the easiest ways to make sure dependencies are in place is by the command

$ sudo apt-get build-dep python-scipy

which will install all packages needed to build the package python-scipy. You may in some cases run into the problem that the version of the source package you are trying to install have different dependencies than the version included with ubuntu, but in your case, I think chances are good that the above command will be sufficient to fetch BLAS for you, headers included.

查看更多
一夜七次
4楼-- · 2019-01-17 23:14

I found Adam Klein's instructions for setting up scipy (and friends) in a virtual environment very useful.

One problem I ran into (which was probably my own fault): After all was said and done, I found importing scipy still loaded version 0.9.0, not 0.12.0. The problem was that my sys.path was finding the old system version before the new version. The fix was to make

/path/to/.virtualenvs/arthur/local/lib/python2.7/site-packages

appear before

/usr/lib/python2.7/dist-packages

in sys.path. If you have virtualenvwrapper installed, then you can add the path using

add2virtualenv /path/to/.virtualenvs/arthur/lib/python2.7/site-packages
查看更多
地球回转人心会变
5楼-- · 2019-01-17 23:15

Make sure libatlas-base-dev and libatlas-sse2-dev are installed, it seems like it can't find your atlas library. Also, see this question:

Does Python SciPy need BLAS?

查看更多
登录 后发表回答