我安装tensorflow时找不到版本

时间:2018-09-11 08:06:10

标签: python linux tensorflow

这是我的症状:

GenericCallback  implements InvocationCallback<Object>

我的python:3.7 64位 os:ArchLinux

2 个答案:

答案 0 :(得分:1)

at the pypi tensorflow page所示,tensorflow当前仅适用于Python 3.6,不适用于Python 3.7。

将设置更改为Python 3.6或从源代码构建Tensorflow。

答案 1 :(得分:0)

尝试此操作(如this中的建议):

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

您应始终检查开始使用的任何库,模块或免费软件的正式文档。您可以通过选中the official documentation找到该解决方案。