码迷,mamicode.com
首页 > 编程语言 > 详细

python及相关工具安装Error集

时间:2015-08-06 01:54:55      阅读:421      评论:0      收藏:0      [点我收藏+]

标签:

python及相关工具安装Error集
1. 如果升级python版本中出现error while loading shared libraries: libpython2.7.so.1.0: cannot open shared object file: No such file or directory
解决方法:
 vim /etc/ld.so.conf
添加:/usr/local/lib
执行:/sbin/ldconfig -v

2. 如果出现unknown url type: https
解决方法:
安装openssl-devel

3. 出现numpy.distutils.system_info.NotFoundError: no lapack/blas resources found
解决办法:
安装atlas atlas-devel.x86_64

4. 出现 Failedto build these modules:    binascii    zlib
解决办法:
安装zlib并重新编译python

5. 安装numpy报错RuntimeError: Running cythonize failed!
解决办法:
编译安装cython

6. 出现error: library dfftpack has Fortran sources but no Fortran compiler found
解决办法:
安装 gcc-gfortran.x86_64

7. 出现ImportError: No module named bz2:
解决办法:
yum install -y bzip2*
cd ../Python-2.7.3/Modules/zlib
./configure
make
make install
cd ../../
python setup.py install
重新编译python

8. 出现ImportError: libpython2.7.so.1.0: cannot open shared object file: No such file or directory
解决办法:
编译时只有加上--enable-shared,才会编译这个共享库,默认的位置是python可执行程序所在目录的lib目录下,如/usr/local/python2.7.4

 

 

python及相关工具安装Error集

标签:

原文地址:http://www.cnblogs.com/x113/p/4706254.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!