【发布时间】:2020-09-22 12:37:11
【问题描述】:
我安装了 python,然后安装了 anaconda。当我尝试从 pip 命令安装 tensorflow 时,出现此错误。有人知道原因吗?
Microsoft Windows [Version 10.0.16299.98]
(c) 2017 Microsoft Corporation. All rights reserved.
C:\Windows\system32>pip install tensorflow.
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow.
C:\Windows\system32>
【问题讨论】:
-
试试
pip install tensorflow==1.14.0或使用pip install tensorflow==2.0之类的最新版本,然后告诉你得到了什么。即指定您要安装的版本。 -
如果您使用的是 Conda,为什么要通过 pip 安装 tensorflow?
标签: python tensorflow pip anaconda conda