Skip to content
Advertisement

Unable to create AWS Lambda Deployment Package for ipopt, pyomo, cython

I’m trying to create an AWS Lambda Deployment Package, so I can use it as an AWS Lambda Layer. Specifically, I’m trying to use the ipopt sovler, in conjuction with the pyomo and cython. I can get the pyomo packaged without issue, but when I try to pip install ipopt for the package I get an error:

JavaScript

I am trying to run the pyomo/ipopt package in an AWS lambda function. This package isn’t in the SDK, so I’ve read that I’ll have to compile the dependencies into a zip, and then upload the zip into the lambda function.

I’ve done some research and tried out the links below, but when I try to pip install ipopt I get error messages – I’m on a Windows box, but I’ve also tried it on the Linux EC2 instance

Appreciate the help!

https://aws.amazon.com/premiumsupport/knowledge-center/lambda-python-package-compatible/

Unable to install cvxpy into virtualenv for AWS lambda

https://medium.com/datadriveninvestor/how-to-set-up-layers-python-in-aws-lambda-functions-1355519c11ed

https://medium.com/@qtangs/creating-new-aws-lambda-layer-for-python-pandas-library-348b126e9f3e

https://github.com/coin-or/Ipopt

https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html

AWS Lambda – unable to import module ‘lambda_function’

Advertisement

Answer

TL;DR, here is the working lambda deployment package that’s compatible with Python 3.6 runtime. [gdrive download link]

It turns out it’s super tricky to pack everything needed into one zip. I spent quite a while (several hours) manually copying library files over. Here are the steps that I took to generate this package.

  1. Spin up a local lambda Python 3.6 runtime docker container
JavaScript
  1. Pip install all the dependencies into a local directory
JavaScript
  1. Followed the official guide to build and install Ipopt from source code
JavaScript
  1. PKG_CONFIG_PATH=/usr/local/lib/pkgconfig pip install ipopt -t ipopt-lib/

  2. Manually copying all the library files over

JavaScript
  1. Zipping all together
JavaScript
  1. Copy to the host machine
JavaScript

Here are all the Python packages available in this deployment package (including the default ones installed in the runtime):

JavaScript

Testing on lambda using Python 3.6 runtime

JavaScript

Result

JavaScript

Cheers!

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement