the problem is mainly your python version so
in your bash
deactivate your environment with :
conda deactivate
then create a new environment :
conda create -n env python=3.8
activate it :
conda activate env
now install tensorflow :
conda install tensorflow