Reputation: 353
Need help friends/ experts:I'm facing this issue below:
UnsatisfiableError: The following specifications were found to be in conflict:
- keras-gpu
- tensorflow-base
Use "conda info <package>" to see the dependencies for each package.
Upvotes: 1
Views: 1278
Reputation: 316
You should have installed the Keras GPU version and the TensorFlow CPU version caused the conflict. method 1: Re-create a TensorFlow-GPU environment under Anaconda Prompt using Pip to install TensorFlow-gpu and Keras, respectively. method 2: Under the Anaconda Navigator direct install Keras-gpu, this self dependent tensorFlow-gpu.
Upvotes: 1