Could not find a version that satisfies the requirement tensorflow==2.0.0 (from versions: )
时间: 2024-06-19 21:03:12 浏览: 176
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个问题通常出现在你使用pip安装tensorflow时,指定的版本号不正确。可能是因为你指定的版本不存在或者版本号写错了。建议你检查一下你的版本号是否正确,或者直接使用最新版本的tensorflow进行安装。你可以使用以下命令进行安装:
pip install tensorflow
如果你需要指定版本号,可以使用以下命令:
pip install tensorflow==2.0.0
阅读全文