使用旧版本的Python安装软件包

时间:2018-11-25 19:47:12

标签: python tensorflow

我有Python 3.7,目前不支持Tensorflow。

所以我安装了Python 3.6.7,转到命令行并输入py -m pip install tensorflow,仍然出现相同的错误:

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

我该怎么做才能确保尝试使用Python 3.6.7安装Tensorflow?

1 个答案:

答案 0 :(得分:0)

浏览文档:https://docs.python.org/3/installing/index.html

解决方案是通过如下指定其调用版本3.6:

py -3.6 -m pip install tensorflow