PIP不会安装Tens

2024-04-25 17:25:56 发布

您现在位置:Python中文网/ 问答频道 /正文

我试图用pip安装tensorflow,但每次尝试都会得到以下信息:

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

我该怎么办? 如果需要在Windows上运行Pip 19.2 m)


Tags: installpip信息thatversiontensorflowpip3not
3条回答

尝试python3 -m pip install tensorflow

另外,tensorflow只支持64位版本的Python,请检查是否安装了正确的版本。在

pip install  upgrade tensorflow

而且,通常情况下,将稍微旧一点的Python版本与Tensorflow一起使用更容易。我发现安装python3.6.x+tf要比3.7.x更顺畅

相关问题 更多 >