python及相关工具安装Error集

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
时间: 2024-10-23 15:42:09

python及相关工具安装Error集的相关文章

安装python模块报错 error: command 'gcc' failed with exit status 1

最近在安装paramiko模块的时候,总是报错:error: command 'gcc' failed with exit status 1,一开始比较挠头.找了蛮多资料,说的大多都是说缺少Python-devel 包,然而并不是! 最后蛮费劲的找到了一遍短小但就是正确的博文:http://blog.csdn.net/fenglifeng1987/article/details/38057193 —————————————————————— 解决方法: 安装:yum install gcc li

安装NET.FRAMEWORK报错:error 25015安装法度集 C:\Windows\Microsoft .NET\Framework\v2.0.50727\xxx.dl

error 25015安装法度集“C:\Windows\Microsoft .NET\Framework\v2.0.50727\xxx.dl 2013年12月26日  作者:Admin 呈现题目: 安装mssql2005呈现闪退.net2.0框架.说话包等无法安装,同时呈现如下错误 错误提示: error 25015安装法度集“C:\Windows\Microsoft .NET\Framework\v2.0.50727\xxx.dll”失败,原因是呈现了体系错误:另一个法度正在应用此文件,过程无

Windows系统下Python与NumPy安装方法

Windows系统下Python与NumPy安装方法 Windows下Python的某些第三方包安装步骤实在是太麻烦了(这里主要以NumPy为例,目前只有遇到安装它的时候出现了很多问题),晚上花了好几个小时才把NumPy科学计算包安装好,在这里描述下安装过程,避免大家走没有必要的弯路. 1,安装Python 首先,运行下载的MSI安装包,选择安装组件时,确保勾上了所有的组件. 特别要注意选上pip和Add python.exe to Path,然后多次点击Next即可完成安装. Python解释

python下setuptools安装

python下的setuptools带有一个easy_install的工具, 在安装python的每三方模块.工具时很有用,也很方便. 安装setuptools前先安装pip, 请参见<python下pip的安装> 1. 下载: 在它的官网可以下载到安装包: https://pypi.python.org/pypi/setuptools 页面最下面的是它的安装链接,如: $wget --no-check-certificate https://pypi.python.org/packages/

python版protobuf 安装

1. 下载protobuf源代码(当前最新版本为:2.5.0) #cd /opt #wget https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz 2. 解压,编译,安装 #tar zxvf protobuf-2.5.0.tar.gz #cd protobuf-2.5.0 #./configure #make #make check #make install 3. 继续安装protobuf的python模块(如果不用python

CentOS7 安装Hbase集群

继续接上一章,已安装好Hadoop集群环境 http://www.cnblogs.com/dopeter/p/4612232.html 在此基础上继续安装Hbase集群 Hbase版本为1.0.1.1 一. 安装与配置Hbase 1. 解压 tar -zxvf hbase-1.0.1.1-bin.tar.gz-C /opt 2. 配置 cd /opt/hbase-1.0.1.1/conf vi hbase-env.sh export JAVA_HOME=/usr/java/jdk1.8.0_45

python虚拟环境virtualenv安装和配置

http://blog.csdn.net/pipisorry/article/details/47008981 python虚拟环境virtualenv VirtualEnv用于在一台机器上创建多个独立的python运行环境,VirtualEnvWrapper为前者提供了一些便利的命令行上的封装. Virtualenv是一个非常好的virtual python environment builder,他最大的好处是,可以让每一个python项目单独使用一个环境,而不会影响python系统环境,也

python爬虫问题:error: command &#39;gcc&#39; failed with exit status 1

软件安装过程中,在安装lxml的时候出现如下错误 error: command 'gcc' failed with exit status 1 gcc当然没问题,问题原因是缺少相关组件, 安装以下2个组件即可, yum install libxslt-devel libxml2-devel 回到lxml-3.4.2目录,执行 python setup.py install 安装成功! python爬虫问题:error: command 'gcc' failed with exit status

Python uwsgi 无法安装以及编译报错的处理方式

之前安装uwsgi的时候编译一步有出错,因为比较早,部分错误代码已经找不到了,网上找了部分错误信息, 现把解决方式共享出来. 环境:CentOS release 6.4   Python 2.7.3 报类似下面的错误代码,多半因为setuptools没有安装,安装setuptools就好了 bash-3.2# python setup.py build Traceback (most recent call last): File "setup.py", line 6, in modu