TensorFlow:unsatisfiableError:发现以下规范存在冲突

标签 tensorflow

我正在尝试在Win10中使用python 2.7在anaconda中安装tensorflow,通过conda安装:

conda install -c conda-forge tensorflow=1.1.0

然后,我收到错误消息:

- python 2.7*
- tensorflow 1.1.0* -> python 3.5*
Use 'conda info <package>' to see the dependencies for each package.

该消息是否意味着我需要使用 python 3.5?

最佳答案

Yes.

TensorFlow only supports version 3.5.x of Python on Windows. Note that Python 3.5.x comes with the pip3 package manager, which is the program you'll use to install TensorFlow.

该页面上有在 Win10 上使用 Anaconda 安装 TF 的说明。

关于TensorFlow:unsatisfiableError:发现以下规范存在冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44635364/

相关文章:

python - 我如何知道在 tf.keras 中实现了哪个版本的 Keras API?

python - 模型返回错误 - ValueError : logits and labels must have the same shape ((None, 18) vs (None, 1))

tensorflow - tf.keras.layers.LSTM 参数的含义

machine-learning - 更改 Tensorflow 中的变量值并评估成本函数

tensorflow - Softmax逻辑回归: Different performance by scikit-learn and TensorFlow

tensorflow - sklearn.preprocessing 中的 LabelEncoder 是否有类似的方法?

python - 如何计算神经网络模型的准确性

Tensorflow/models 使用 COCO 90 类 ID 虽然 COCO 只有 80 个类别

tensorflow - 在 tensorflow 中实现高通滤波器

python - 如何为 TensorFlow 变量赋值?