Serverless: Python3.7 Not Found! Try The Pythonbin Option
I'm trying to develop a simple serverless app using Serverless framework and Python. Here's my serverless.yml service: hello-world provider: name: aws region: us-west-2 run
Solution 1:
Add the following in the custom section:
pythonRequirements:pythonBin:python3
Like this:
custom:
...
pythonRequirements:
pythonBin: python3
...
Post a Comment for "Serverless: Python3.7 Not Found! Try The Pythonbin Option"