Hi again Tom
How would a basic client call to glpk look like? I tried
import json
import glpk
def lambda_handler(event, context):
return {
'statusCode': 200,
'body': json.dumps(glpk.glp_version())
}
and got
Response:
{
"errorMessage": "Unable to import module 'lambda_function': No module named 'glpk'",
"errorType": "Runtime.ImportModuleError"
}
Thanks
Hi again Tom
How would a basic client call to glpk look like? I tried
and got
Thanks