Elastic Beanstalk Matplotlib无法构建freetype

时间:2017-03-09 05:07:00

标签: python amazon-web-services matplotlib elastic-beanstalk

我正在尝试在Amazon Elastic Beanstalk上部署一个烧瓶应用程序。我正忙着安装matplotlib。像this one这样的建议如何解决问题涉及从ubuntu安装软件包,这是我无法为Elastic Beanstalk做的。我正在尝试安装matplotlib 2.0.0,我收到以下错误:

* The following required packages can not be built:
* freetype, png

1 个答案:

答案 0 :(得分:0)

您可以使用http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers-ec2.html#linux-packages中所述的packages密钥在EB部署期间安装软件包。

以下内容可能有效:

<强> .ebextensions / 01-安装-freetype.config

packages: 
  yum:
    freetype: []
    png: []

虽然在我的系统上,已经安装了freetype ......