问题描述
如何安装BLAS& Ubuntu 14.04中的LAPACK?当我尝试使用apt-get install BLAS
安装这些软件包时:
Error occurred
Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
最佳回答
@Maythux的答案中有一个错字:liblapacke
中不应有e
。
可以使用以下方法安装更简约的软件包:
sudo apt-get install libblas-dev liblapack-dev
另外,如果要安装这些文件以使scipy
与pip
一起安装,则可能不是完整的解决方案(我无法在ARM体系结构Ubuntu 14.04系统中使用pip install scipy
)。我发现apt-get install python-scipy
成功,但是它是一个较旧的版本(0.13.3)。如果您需要通过pip
更新的版本,则可能还需要:
sudo apt-get install gfortran
I found this info on StackOverflow here
次佳回答
就我而言,解决方案是
sudo apt-get install libatlas-base-dev
第三种回答
为了解决管理员目录锁定问题,请搜索进程。
sudo rm /var/lib/apt/lists/lock
sudo apt-get update
然后尝试安装命令
sudo apt-get install libblas-dev checkinstall
sudo apt-get install libblas-doc checkinstall
sudo apt-get install liblapacke-dev checkinstall
sudo apt-get install liblapacke-doc checkinstall