I have a simple Elastic Beanstalk Python instance that is installing flask using a requirements.txt file that looks like this
Flask==1.0.2
This works, but in the interests of speed I am trying to instead use a predownloaded wheel .whl
file to install.
I have tried putting the .whl
file in the /opt/python/current/wheels/flask.whl requirements.txt like this...
-f /opt/python/current/app/wheels Flask==1.0.2
But this is not working, where am I going wrong?