linux7中python ImportError: No module named pymc 处理方法
- 系统环境 #cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) #python -V Python 2.7.5
- pip安装pymc报错 #报错内容如下: error: lapack/double/dpotrs.f: No such file or directory
- 解决方法 (1)最简单的方式--pip #从上面报错内容可知,缺少库:lapack-devel yum install -y lapack-devel #再使用pip安装pymc pip install pymc #查看下pymc的版本 pip list |grep pymc pymc 2.3.6 #python中import python >>> import pymc
(2)使用Anaconda 详见linux7 Anaconda的安装及使用