事情是这样的,在centos6 上本来是python2.6 然后我下载了一个python2.7.5 安装之后,把默认python修改为python2.7.5版本。
使用pip安装twisted的时候出现
CompressionError: bz2 module is not available 错误的。
sof给出的答案基本都是安装 bzip2, bzip2-devel这种依赖包。
http://stackoverflow.com/questions/812781/pythons-bz2-module-not-compiled-by-default
ubuntu上:
sudo apt-get install libbz2-dev
redhat/centos 上
yum install bzip2-devel
或者有些建议源码安装和重新编译python
我就是照着安装和重新编译python,然后再装twisted,还是报错。
换个方式:
[root@localhost Python-2.7.5]# python -c "import bz2;print bz2" <module 'bz2' from '/usr/local/lib/python2.7/lib-dynload/bz2.so'> [root@localhost Python-2.7.5]# python27 -c "import bz2" Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: No module named bz2 ?
原因是多个python版本共存,需要统一python的版本,还要把shell默认的python版本缺少的包补全。
可以参考:http://stackoverflow.com/questions/8115280/importerror-no-module-named-bz2-for-python-2-7-2
零碎经验:
本文出自 “orangleliu笔记本” 博客,转载请务必保留此出处http://blog.csdn.net/orangleliu/article/details/41081171
作者: orangleliu
[python]CompressionError: bz2 module is not available
原文地址:http://blog.csdn.net/orangleliu/article/details/41081171