i have problem with setting up python script on aws lambda function for IBM MQ client. The things I did:
- I install IBM MQ client on Ubuntu linux server and there I installed pymqi with pip install pymqi
- I zipped MQ installation path (/opt/mqm) and pymqi in same zip file
- I uploaded this zip on AWS lambda layer
- then I created new lambda function and add layer and wrote in function code "import pymqi"
- In enviroment variables I added LD_LIBRARY_PATH = /opt/mqm/lib64
I get next error: "errorMessage": "Unable to import module 'lambda_function': No module named 'pymqe'"