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” dl
,imageop
因为它们自 2.6 以来就被弃用了,而且您可能不需要它们。
但是sqlite3
和bz2
经常被其他包使用,对于这些包,您需要libsqlite3-dev
分别安装,libbz2-dev
然后重新运行 Python 的配置和重建。