如何在python3.7上安装tensorflow [重复]

问题描述 投票:0回答:1

这个问题在这里已有答案:

我试过像这样的指令却失败了:

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

错误信息只是找不到网址。如果我将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呢?

我尝试了其他帖子中的说明,但没有一个有效。

python tensorflow installation
1个回答
2
投票

Tensorflow还不支持Python 3.7(https://github.com/tensorflow/tensorflow/issues/17022)。

使用Python 3.6。

© www.soinside.com 2019 - 2024. All rights reserved.