如何在 Pivotal Cloud Foundry 上获取 python xmlsec 库 运行

How can I get the python xmlsec library running on Pivotal Cloud Foundry

我正在尝试让 python 模块 python3-saml 在使用标准 python buildpack 和 cflinuxfs2 堆栈的 Cloud Foundry 应用程序上运行.该模块依赖于 python xmlsec 模块作为依赖项,但不幸的是,我 运行 遇到了让它工作的问题。

我已经整理了一个需求文件并销售了所有 python 依赖项,但是当我转到 运行 和 "cf push" 命令时,我不断收到以下错误。

            Running setup.py install for xmlsec: started
              Running setup.py install for xmlsec: finished with status 'error'
              Complete output from command /tmp/contents998689849/deps/0/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-lwwtrplp/xmlsec/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-qwoda574-record/install-record.txt --single-version-externally-managed --compile:
              running install
              running build
              running build_ext
              *********************************************************************************
              Could not find xmlsec1 config. Are libxmlsec1-dev and pkg-config installed?
              *********************************************************************************

              ----------------------------------------
          Command "/tmp/contents998689849/deps/0/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-lwwtrplp/xmlsec/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-qwoda574-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-lwwtrplp/xmlsec/
          pip install has failed. You have a vendor directory, it must contain all of your dependencies.
          **ERROR** Could not install pip packages: Couldn't run pip: exit status 1
   Failed to compile droplet: Failed to run all supply scripts: exit status 14
   Exit status 223

我尝试手动上传适当的 libxmlsec1-dev 和 libxmlsec1 并设置一个环境变量来引用它们,但是暂存过程似乎只是在设置包时忽略了它们。

我可以做些什么来使这个过程正常运行?我想象那里有一个自定义构建包可以解决问题,但我不确定是否有办法使用标准 python 构建包来代替。

主要选择是出售您的依赖项。使用此选项,您可以在本地构建,然后也推送所有已编译的位。诀窍是你必须在兼容的系统上构建,所以你需要一个 Ubuntu Trusty PC/VM/Docker 容器。

按照这些说明进行操作,然后 运行 cf push 并确保您没有忽略 vendor 目录(如果存在,请从 .cfignore 中删除)。

https://docs.cloudfoundry.org/buildpacks/python/index.html#vendoring

另一个应该起作用的选项是使用多构建包支持。有了这个,您可以使用两个构建包进行推送。第一个是 Apt buildpack and the second would be the python buildpack. The Apt buildpack 允许你安装你需要的包,看起来像 libxmlsec1-dev。第二个只是标准的 Python 构建包,但它可以访问通过 Apt 构建包安装的内容。

您可以在此处查看说明:https://docs.cloudfoundry.org/buildpacks/use-multiple-buildpacks.html