Kehinde Ogundeyi
Kehinde Ogundeyi

Reputation: 77

Installation problem for Tensorflow with conda

I am getting this error while using 'conda install tensorflow' to install tensorflow on Anaconda

CondaVerificationError: The package for tensorflow-base located at 'Lib/site-packages/tensorflow-2.1.0.data/purelib/tensorflow_core/include/tensorflow_core/core/grappler/optimizers/generic_layout_optimizer_transposer_factory.h'specified in the package manifest cannot be found.

Any Help will be appreciated, Thanks.

Upvotes: 1

Views: 1168

Answers (1)

marton mar suri
marton mar suri

Reputation: 107

Uninstall the tensorflow and install it again :

Try this:

pip install tensorflow #CPU only
pip install tensorflow-gpu #For GPU support

or

conda install -c conda-forge tensorflow

Upvotes: 1

Related Questions