How To Install Cffi Package On Aws Beanstalk
This question looks the same as this post, but since there was no answer, I am re-asking here. I have a Django project to be deployed on AWS Beanstalk, which is using a package cff
Solution 1:
To install the cffi
python package, you first need to install libffi-devel
using yum
:
sudo yum install libffi-devel
Which you can automate by adding it to your config file in the .ebextensions
folder like this:
packages:yum:libffi-devel: []
This was mentioned in the other post, but since the search engine brought me here first and the other is marked as duplicate... I thought I should better reply here.
Post a Comment for "How To Install Cffi Package On Aws Beanstalk"