Supported TensorFlow version

Hi Support,

Please advise what version of TensorFlow is supported?
I have tried multiple uploads but it fails with the following:
ERROR: Could not find a version that satisfies the requirement tensorflow==2.5.0
ERROR: No matching distribution found for tensorflow==2.5.0

Thank you.

Make sure that you’re not using the default alpine image (line 5 on the provided Dockerfile), but rather the provided tensorflow one (line 17 on the provided Dockerfile)

# Base image provided by Entelect Challenge
# Uncomment the FROM line the python base language you want to use. And uncomment the default FROM line.

# Default Python image.
# Base image is based on: python:3.9-alpine3.12
FROM public.ecr.aws/m5z5a5b2/languages/python:2021 <-- COMMENT THIS ONE OUT
# Pytorch Python image.
# Base image is based on: pytorch/pytorch:1.8.0-cuda11.1-cudnn8-runtime
# Pytorch version = 1.8.0
# NOTE: GPU cores are not available in Game environment
#FROM public.ecr.aws/m5z5a5b2/languages/python_pytorch:2021

# Tensorflow Python image.
# Base image is based on: tensorflow/tensorflow:2.4.1
# Tensorflow version = 2.4.1
# NOTE: GPU cores are not available in Game environment
#FROM public.ecr.aws/m5z5a5b2/languages/python_tensorflow:2021 <--- UNCOMMENT THIS ONE

2 Likes