I am trying to set up a Flask application on Elastic Beanstalk. One of the dependencies is cffi
. When I look at the error logs I get the same error as in this question: Package libffi was not found in the pkg-config search path
. This answer says that libffi needs to installed through a more general package config file for linux packages. So I have the following config file:
packages:
yum:
python-dev: []
python-matplotlib: []
libffi-devel: []
However, I am still getting the same error. The config file is named 01run.config and is in .ebextensions/01run.config. How do I check whether these packages are being installed / get them to install?