from ktsh.tanaka.2020 to quique123
In your Anaconda, Tesorflow is in conflict, so I think it cannot be installed.
To avoid that situation,
$ Conda config --show
Please execute and check the contents.
And if Tensorflow or geopanda is included in it, Tensorflow that is trying to install newly will not be included.
In that case,
$ conda create --name tensorflow2 python = 3.8
To create an environment for Tensorflow2.
and,
$ conda activate tensorflow2
After executing
$ conda install -c conda-forge tensorflow
I think you should do it.
Regards, you.
ktsh.tanaka.2020