pip install tensorflow-gpu出现的问题

ERROR: No matching distribution found for tensorflow-gpu==1.14

关于这个问题,在看了其他博客后发现了是本机安装的python版本太高:3.8.3

于是准备降低python版本,后来发现本机安装了多个版本python,其中有python3.6(etc目录下)
使用命令指定pip install 版本:

python3.6 -m pip install tensorflow-gpu==1.14.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

其中 -i 为临时更换软件源

清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里:https://mirrors.aliyun.com/pypi/simple/

你可能感兴趣的:(pip install tensorflow-gpu出现的问题)