如何安装无法通过pip获得的Tensorflow版本

时间:2020-09-27 21:34:59

标签: python tensorflow pip

我正在尝试安装特定版本的tensorflow,作为我要使用的某些代码(https://github.com/serengil/deepface)的要求的一部分

当我尝试像通常在命令提示符下那样安装时,得到以下信息。

C:\Windows\system32>pip install tensorflow==1.9.0
ERROR: Could not find a version that satisfies the requirement tensorflow==1.9.0 (from versions: 1.13.0rc1, 1.13.0rc2, 1.13.1, 1.13.2, 1.14.0rc0, 1.14.0rc1, 1.14.0, 1.15.0rc0, 1.15.0rc1, 1.15.0rc2, 1.15.0rc3, 1.15.0, 1.15.2, 1.15.3, 1.15.4, 2.0.0a0, 2.0.0b0, 2.0.0b1, 2.0.0rc0, 2.0.0rc1, 2.0.0rc2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.1.0rc0, 2.1.0rc1, 2.1.0rc2, 2.1.0, 2.1.1, 2.1.2, 2.2.0rc0, 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.2.1, 2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0, 2.3.1)
ERROR: No matching distribution found for tensorflow==1.9.0

我已经引用了其他一些Stackoverflow问题(Installing Tensorflow 1.9 in Windows),却找不到解决方案或如何获得所需的版本。

1 个答案:

答案 0 :(得分:1)

tensorflow==1.9.0在PyPI(link)上可用。您的问题是您可能正在使用Python 3.7,而1.9.0仅支持2.7和3.3至3.6。安装64位Python 3.6并使用它代替3.7。