问题
I'm developing AWS Lambda function on PyCharm. When I do "Run" button, Following error message.
/usr/local/bin/sam build MyFunction --template /Users/miyashiiii/Works/myapp/myapp/template.yaml --build-dir /Users/miyashiiii/Works/myapp/myapp/.aws-sam/build
Building codeuri: myapp/ runtime: python3.7 metadata: {} functions: ['MyFunction']
Build Failed
Error: PythonPipBuilder:Validation - Binary validation failed for python, searched for python in following locations : ['/usr/bin/python'] which did not satisfy constraints for runtime: python3.7. Do you have python for runtime: python3.7 on your PATH?
python3.7 is on my PATH, and other some locations is on my PATH, but locations list includes only '/usr/bin/python'.
And when I do same command (/usr/local/bin/sam build ~~) on terminal, It succeed.
How to export PATH to "sam build" command?
回答1:
I solved the problem for python3.8 (same for python3.7 I suppose) by linking executable into /usr/local/bin
ln -sf /usr/local/opt/python@3.8/bin/python3.8 /usr/local/bin/
To find your python directory if installed by homebrew: brew info python@3.8
Also, you'd probably prefer running SAM inside a docker container (option sam build --use-container
with CLI)
In pycharm:
来源:https://stackoverflow.com/questions/65180787/how-to-export-path-to-sam-build-command