构建:使用系统Python的依赖项
作者:互联网
我正在尝试使用buildout作为Python包,当使用它时,取决于2个扩展模块:dbus-python和pygobject.两个模块都使buildout失败:dbus-python缺少setup.py文件,而pygobject有一个但其用法是气馁 – 应该使用configure,make,make install.因此,buildout无法在开发环境中设置这些依赖项.
这是我的buildout.cfg:
[buildout]
develop = .
parts = eggs
[python]
recipe = zc.recipe.eggs
interpreter = python
eggs = foobar
foobar包的setup.py包含:
install_requires=['dbus-python', 'pygobject'],
在寻找解决方案时,我偶然发现了配方z3c.recipe.scripts及其ability to utilize system-wide installed eggs.但是,当应用于我的buildout.cfg时..
[python]
recipe = z3c.recipe.scripts
include-site-packages = true
allowed-eggs-from-site-packages = pygobject, dbus-python
interpreter = python
eggs = foobar
..它似乎没有效果(仍然失败),虽然两个软件包(dbus,gobject)都安装在我的系统Python中.当我删除允许的蛋..线时也是如此.
我的问题:我在概念层面上遇到了什么问题,或者我的buildout.cfg中是否有错误?
我知道有zc.recipe.cmmi
,一个使用configure,make,make install安装鸡蛋的食谱.但是,在我的情况下,简单地引用系统Python egg就足够了.我不需要buildout生成的100%可重现的环境.此外,dbus-python和pygobject默认安装在大多数Linux桌面系统上,即使用foobar的环境.
解决方法:
我还没有获得最新的1.5.x扩展来使用系统包.有一种方法:固定版本.这样,zc.buildout 1.5.x就会把它拿起来.
[buildout]
...
versions = versions
[versions]
pygobject = 1.2.3
或者,我所做的,你可以使用旧的1.4.4 buildout(你需要一个特殊的bootstrap.py,google)和osc.recipe.sysegg一起使用.
[buildout]
...
parts =
...
sysegg
[sysegg]
recipe = osc.recipe.sysegg
force-sysegg = true
eggs =
dbus-python
pygobject
我个人会选择osc.recipe.sysegg解决方案,因为这是可靠的.
标签:buildout,python,pygobject,dbus 来源: https://codeday.me/bug/20190826/1733875.html