欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在Tensorflow2.0环境下无法安装Tensorflow1.0的问题

程序员文章站 2024-03-11 10:14:13
...

这里我的python版本是3.8,然后安装tensorflow1.15,提示找不到

(base) D:\codes\pythons\WeChat_Big_Data_Challenge>pip install tensorflow==1.15.0 -i https://pypi.tuna.tsinghua.edu.cn/simple/
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple/
ERROR: Could not find a version that satisfies the requirement tensorflow==1.15.0 (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.2.1, 2.2.2, 2.3.0rc0, 2.3.0rc1, 2.3.0r
c2, 2.3.0, 2.3.1, 2.3.2, 2.4.0rc0, 2.4.0rc1, 2.4.0rc2, 2.4.0rc3, 2.4.0rc4, 2.4.0, 2.4.1, 2.5.0rc0, 2.5.0rc1, 2.5.0rc2, 2.5.0rc3, 2.5.0)
ERROR: No matching distribution found for tensorflow==1.15.0

然后我就用conda创建了一个新的虚拟环境,然后给它安装上3.6.8的python

然后再执行相同的语句pip install tensorflow==1.15.0 -i https://pypi.tuna.tsinghua.edu.cn/simple/

然后就安装成功了,当然这个过程中经常TimeOut,然后我用迅雷下载那个.whl文件,然后安装,成功了。

特此记录,Tensorflow2.0和1.0使用的Python版本是不同的