安装tens时找不到版本

2024-09-28 22:19:48 发布

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

这是我的症状:

[shankai@shankai ~]$ pip3 install tensorflow
Collecting tensorflow
  Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow

我的python:3.7 64位 操作系统:ArchLinux


Tags: installthefrom症状thatversiontensorflowpip3
2条回答

试试这个(正如this帖子中建议的那样):

python3 -m pip install  upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whl

你应该经常检查你开始使用的任何库、模块或免费软件的官方文档。您可以通过检查the official documentation找到这个解决方案。在

如前所列,at the pypi tensorflow pagetensorflow目前仅适用于python3.6,而不适用于python3.7。在

从Python源代码更改为构建Tensor Flow。在

相关问题 更多 >