Elastic beanstalk require python 3.5
I recently created a new python program using the latest stable release of python (3.5). Unfortunately, AWS EB does not provide a 3.5 base image. I have been trying to configure .ebextensions to get the image to upgrade the python distro as it's first action. I have not had success. I have tried the following: Packages packages: yum: postgresql93-devel: [] python35: [] Commands container_commands: 01_install_packages: command: 'yum install -y python35 python35-pip' In the case of container_commands , the log did show python 35 successfully installing. However, our code (in a follow-up command)