터미널 창에 다른 오류 없이 ERROR: ServiceError - Create environment operation is complete, but with errors. For more information, see troubleshooting documentation. 라는 내용만 보이거나 실제 aws 홈페이지에서 상태를 보았을 때 Pending만 나오고 있다면 아래 방법을 통해 해결 가능합니다.
python3 -m pip install --upgrade pip
pip uninstall awsebcli
pip install awsebcli
eb deploy myweb
cd ..
pip freeze
명령어 입력하여 설치되어있는 패키지 확인
deploy 폴더 내에 있는 requirements.txt 파일 삭제
아래 명령어 입력하여 다시 requirements.txt 생성
pip freeze > deploy/requirements.txt