[Mac OS] AWS 배포 에러 Command errored out with exit status 1:

2023. 4. 9. 14:40에러대응

아마존 배포 진행중 오류발생 아래코드 실행후 에러가 발생 했다.

pip install awsebcli

아래와 같은 에러발생

ERROR: Could not build wheels for bcrypt which use PEP 517 and cannot be installed directly
WARNING: You are using pip version 19.2.3, however version 23.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

pip 를 업그레이드 해달라는 경고가 떴다.

pip install -U pip setuptools

위 코드 실행후 해결

 

링크 : https://stackoverflow.com/questions/58423367/how-to-fix-error-command-errored-out-with-exit-status-1-when-trying-to-inst

 

How to fix ‘“ERROR: Command errored out with exit status 1:” when trying to install watchdog using pip

I am revisiting the python language and experiencing difficulty setting up my environment. I am using - Mac Mojave (10.14) - python 2.7.10 (packaged with the system) - python 3.7.4 (installed us...

stackoverflow.com