简体   繁体   English

找不到满足tensorflow> = 1.7.0的版本(来自版本:)找不到与tensorflow> = 1.7.0匹配的分布

[英]Could not find a version that satisfies the requirement tensorflow>=1.7.0 (from versions: ) No matching distribution found for tensorflow>=1.7.0

I am trying to install tensorflow in my mac which is greater than version 1.7.0. 我正在尝试在大于1.7.0版的Mac中安装tensorflow。 While I am running the command: 当我运行命令时:

pip3 install "tensorflow>=1.7.0" 

I am getting this error: 我收到此错误:

Could not find a version that satisfies the requirement tensorflow>=1.7.0 (from versions: ) No matching distribution found for tensorflow>=1.7.0 找不到满足tensorflow> = 1.7.0的版本(来自版本:)找不到与tensorflow> = 1.7.0匹配的分布

Any help is highly appreciated. 非常感谢您的帮助。

The above is because TensorFlow is only created to run on Python versions 3.6, 2.7 and 3.5. 这是因为TensorFlow仅创建为可在Python 3.6、2.7和3.5版本上运行。 As your Python version is 3.7, pip cannot find any TF version which is compatible. 由于您的Python版本是3.7,因此pip无法找到任何兼容的TF版本。 Try degrading the Python version, or install Python version 3.6 separately and install TensorFlow in it by : pip3 install tensorflow . 尝试降级Python版本,或单独安装Python版本3.6,然后通过以下pip3 install tensorflow在其中安装TensorFlow: pip3 install tensorflow

Also, to manage different python versions you can use Anaconda environments. 另外,要管理不同的python版本,您可以使用Anaconda环境。 They are easy to use and have a separate conda package manager. 它们易于使用,并具有单独的conda软件包管理器。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 错误:找不到满足 tensorflow 要求的版本(来自版本:无)错误:没有找到 tensorflow 的匹配分布) - ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow) Mac using:Could not find a version that satisfied the tensorflow (from versions:) No matching distribution found for tensorflow - Mac using:Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow 找不到满足张量流要求的版本(来自版本:)没有找到张量流的匹配分布 - Could not find a version that satisfies the requirement tensorflow (from versions:) No matching distribution found for tensorflow 找不到满足要求的版本 tensorflow-gpu==1.7.0 - Could not find a version that satisfies the requirement tensorflow-gpu==1.7.0 错误:找不到满足 tensorflow==2.1.0 要求的版本,并且未找到 tensorflow==2.1.0 的匹配分布 - ERROR: Could not find a version that satisfies the requirement tensorflow==2.1.0 and No matching distribution found for tensorflow==2.1.0 错误:找不到满足 tensorflow 要求的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) 找不到满足hdf5要求的版本(来自版本:)找不到与hdf5匹配的发行版 - Could not find a version that satisfies the requirement hdf5 (from versions: ) No matching distribution found for hdf5 如何修复“找不到满足安装要求的版本(来自版本:)找不到安装的匹配发行版”错误 - how to fix " Could not find a version that satisfies the requirement install (from versions: ) No matching distribution found for install " error 每次下载 pip 都失败(找不到满足要求 ** 的版本(来自版本:)找不到匹配的 ** 发行版) - pip fails for every download (Could not find a version that satisfies the requirement ** (from versions: ) No matching distribution found for **) 错误:找不到满足要求的版本 os(来自版本:无) 错误:找不到匹配的发行版 os - ERROR: Could not find a version that satisfies the requirement os (from versions: none) ERROR: No matching distribution found for os
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM