Hi,
I am working on upgrading some applications we have that are running in AWS Lambda docker images from python 3.7 to python 3.9. The docker images are listed as below:
- Python 3.7
- public.ecr.aws/lambda/python:3.7
- Python 3.9
- public.ecr.aws/lambda/python:3.9
Previously we were using opencv-python==4.3.0.36
, however python 3.9 does not support this version so I had to upgrade to the next closest version, which was 4.3.0.38
. When doing this upgrade, opencv now compiles from source when trying to pip install
.
I am not sure why it is not choosing the appropriate whl file since the linux distro the docker image uses didn’t change (to my knowledge).
Hoping for insight.
Thanks!
Logan Elkins