ML引擎:找不到软件包libffi

时间:2019-02-06 22:23:15

标签: python pip cairo google-cloud-ml pycairo

我正在尝试在ML Engine中训练一个使用// returns the union of two arrays where duplicate objects with the same 'prop' are removed const removeDuplicatesWith = (a, b, prop) => a.filter(x => !b.find(y => x[prop] === y[prop]); python模块的模型,该模块依赖于称为cairocffi的东西。在日志中,我收到消息libffi。其他遇到此问题的人可以通过在运行No package 'libffi' found之前在其计算机上执行apt-get install libffi-dev来解决此问题。有没有办法为ML Engine作业安装这种依赖关系?

1 个答案:

答案 0 :(得分:1)

对于pip无法安装的依赖项,可以将它们打包在一个容器中,然后在Cloud ML Engine上运行。 here记录了如何运行自定义容器。