我正在尝试numpy
在我不是sudoer 的服务器上导入 python。当我导入时,我收到以下错误:
ImportError: /usr/lib/liblapack.so.3gf: undefined symbol: ATL_chemv
我知道有两个相互冲突的库:
$ ls -l /etc/alternatives/*.so.3gf
lrwxrwxrwx 1 root root 39 Sep 21 21:31 /etc/alternatives/libblas.so.3gf -> /usr/lib/openblas-base/libopenblas.so.0
lrwxrwxrwx 1 root root 42 Aug 19 2014 /etc/alternatives/liblapack.so.3gf -> /usr/lib/atlas-base/atlas/liblapack.so.3gf
但是到目前为止我看到的所有解决方案(比如这里或这里)都需要 root 访问权限,而我没有。有没有快速解决这个问题的方法?
我在 Ubuntu 12.04.5 上运行 python 2.7.3。