Home > Mobile >  TensorFlow not showing up in Anaconda Navigator
TensorFlow not showing up in Anaconda Navigator

Time:03-15

I've been trying for a while now to install TensorFlow using Anaconda, but it does not seem to appear.

I am using the Anaconda Navigator, creating multiple environments between python 3.7 to 3.10, and I have also added conda-forge channel to the navigator: 1

Whenever I seach for Tensorflow, only tensorflow-related packages like r-tensorflow, tensorboard, keras, etc.: 2 I have also tried using the Anaconda Powershell Prompt, but it can also not find TensorFlow

It is worth noting that the powershell prompt does not include conda-forge in its current channels though: 3

I am also running this on Windows 10

CodePudding user response:

The channels listed in your powershell output indicate that you are using a 32 bit installation of anaconda. tensorflow is only available for 64 bit though, so in case that you have 64 bit windows (I suspect that it is the case), you should remove your installation of anaconda and reinstall using the 64 bit installer.

  • Related