我尝试过这样的指令,但失败了:
pip3 install -t /projects/****/users/****/python/3.7.0 --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.10.0-cp37-cp37m-linux_x86_64.whl
错误消息只是找不到URL。如果我将cp37之类的版本更改为cp36,由于python的版本为3.7,这也会失败。
如果我只使用说明:
pip3 install -t /projects/****/users/****/python/3.7.0 tensorflow
它将出现这样的错误消息:
Cache entry deserialization failed, entry ignored
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
那么究竟如何在python3.7上安装tensorflow?
我尝试了另一篇文章中的说明,但没有一个起作用。
答案 0 :(得分:2)
Tensorflow尚不支持Python 3.7(https://github.com/tensorflow/tensorflow/issues/17022)。
使用Python 3.6。