Trying to install Tensorflow with Anaconda-navigator but can not find the package in the navigator

Viewed 2742

I am trying to install Tensorflow with Anaconda-navigator but can not find the package in the navigator.

tesnorflow not displayed in not installed section

I haven't installed any of the extra packages like keras, openCV etc. So they must display in the above section.

I also tried searching for TensorFlow in the all section

enter image description here

Also tried the same with base(root) environment. Please help. Even tried installing tensorflow using cmd prompt. That throws an error therefore I want to install it using the navigator only. Thank you in advance

3 Answers

Additionally to the steps described above (with the version @aysebilgegunduz mentioned), I also had to "Update index..." after adding "conda-forge" to the environment's channels. Afterwards, I found the desired package.

Tensorflow isn't in the "defaults" anaconda channel. It is on conda-forge instead. In order to add conda-forge to your channels:

Click on "channels" (left of where you searched for tensorflow)

Click on "add"

Paste this URL in: https://conda.anaconda.org/conda-forge/

Press enter

Press "Update channels"

Now search again, and it should be there!

Related