我正在尝试在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作业安装这种依赖关系?