AWS Lambda 개발시 만난 오류

손연주·2022년 2월 10일
0

aws: command not found

오류 해결 방법

DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support

$export PATH="/usr/local/opt/python/libexec/bin:$PATH"

터미널에 이 문구를 입력하면 된다. . .

botocore.exceptions.ConfigParseError: Unable to parse config file: ~~...

check the file and ensure we have content as shown below. if default is missed you will encounter the following message.

[default]
aws_access_key_id = AKITSMYACCESSKEY
aws_secret_access_key = SKITSMYSECRETKEY
profile
할 수 있다는 생각이 정말 나를 할 수 있게 만들어준다.

0개의 댓글