Installing TensorFlow Ubuntu 18.04



我正在尝试安装tensorflow,但当我运行时

pip install tensorflow

我得到以下错误:

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

在许多其他帖子中,解决方案是升级pip版本。但我的版本已经是21.1.1了,我仍然无法在我的环境中安装tensorflow。。

我错过了什么?

你可以试试这个

pip install ISR --no-deps

然而,你用过康达吗?使用它安装Tensorflow真的很容易。只是

conda install Tensorflow

(如果你没有从这里安装(

致以最良好的问候,ykostov

您可能正在使用python3而不是python2,如果是这样,请尝试:

pip3 install tensorflow

最新更新