centos 5.8 中未安装 Python 2.7.3

centos 5.8 中未安装 Python 2.7.3

centos中安装python2.7.3

Python build finished, but the necessary bits to build these modules were not found:
bsddb185           dl                 imageop         
sunaudiodev                                           
To find the necessary bits, look in setup.py in detect_modules() for the module's name.


Failed to build these modules:
_sqlite3           bz2  

请提供解决方案

答案1

在运行 Python 配置之前,您应该安装一些包。

我不会担心bsddb185、和“sunaudiodev” dlimageop因为它们自 2.6 以来就被弃用了,而且您可能不需要它们。

但是sqlite3bz2经常被其他包使用,对于这些包,您需要libsqlite3-dev分别安装,libbz2-dev然后重新运行 Python 的配置和重建。

相关内容