How Do I Fix This Elastic Beanstalk Error When Deploying A Flask App: Python 3.7.0 Was Not Found On Your System
I am trying to deploy my Flask app using the EB CLI following this official AWS tutorial. I receive the error 'Create environment operation is complete, but with errors'. Observing
Solution 1:
Based on the comments, the issue was that the EB uses Python 3.7.6
, while the OP's dependencies required version 3.7.0.
The solution was to change the dependency to Python 3.7.6
.
The current python version running on EB can be found here:
64bit Amazon Linux 2 v3.0.1 running Python 3.7 - Python 3.7.6
Post a Comment for "How Do I Fix This Elastic Beanstalk Error When Deploying A Flask App: Python 3.7.0 Was Not Found On Your System"