Windows安装TensorFlow问题 及解决方案Could not find a version that satisfies the requirement tensorflow

一、TensorFlow简介

TensorFlow 是一个开源的、基于 Python 的机器学习框架,它由 Google 开发,并在图形分类、音频处理、推荐系统和自然语言处理等场景下有着丰富的应用,是目前最热门的机器学习框架。

除了 Python,TensorFlow 也提供了 C/C++、Java、Go、R 等其它编程语言的接口。

TensorFlow的官网
TensorFlow Text的官网
TensorFlow Text 一文读懂

二、Wind安装TensorFlow问题

在我使用Windows安装TensorFlow的时候报错了,错误如下:

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

我花了一下午的时候,升级了pip的版本,更换了wind的源都没有用。后面才发现不支持winds
Windows安装TensorFlow问题 及解决方案Could not find a version that satisfies the requirement tensorflow_第1张图片

三、问题解决方案

虽然知道了不支持winds,但我还是试试别的方案,最后安装成功了:

pip install TensorFlow -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

Windows安装TensorFlow问题 及解决方案Could not find a version that satisfies the requirement tensorflow_第2张图片
不过还没有测试,是否兼容代码,后续再写。


参考博客:https://blog.csdn.net/sinat_26811377/article/details/100533312

你可能感兴趣的:(python之错误集,TensorFlow,Windows,pip)