I have Ubuntu 20.04, Nvidia RTX 2060, drivers 530, and CUDA 12.1. When I setup an environment in my Anaconda and install conda install tensorflow==2.x it doesn’t see my GPU. Then I have to install tensorflow-gpu==2.x. Why it is so? Should it work just installing pure tensorflow?
Tensorflow isn’t published to Anaconda any more. If you want the latest you should either use PyPI or conda forge, i.e. pip install tensorflow or conda install -c conda-forge tensorflow.