安装 TensorFlow Ubuntu 18.04
Posted
技术标签:
【中文标题】安装 TensorFlow Ubuntu 18.04【英文标题】:Installing TensorFlow Ubuntu 18.04 【发布时间】:2021-08-09 18:41:01 【问题描述】:我正在尝试安装 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..
我错过了什么?
【问题讨论】:
您的 Python 版本是什么 (python -V
)?你检查过这里tensorflow.org/install/pip的要求吗?
是的,我符合要求。 Python 3.6.9、pip 21.1.1、Ubuntu 18.04。
您使用的是虚拟环境吗? (您也应该在问题中添加更多信息:什么平台等)
【参考方案1】:
您可能使用的是 python3 而不是 python 2,如果是,请尝试:
pip3 install tensorflow
【讨论】:
我的python版本是3.6.9,但即使我用pip3运行它,也会出现同样的错误。 我阅读了另一篇关于您的问题的文章,发现 tensorflow 仅支持 64 位版本的 python。可能是这种情况 你可以看看这个:***.com/questions/48720833/… 我在 64 位上运行 试试这个:liquidweb.com/kb/how-to-install-tensorflow-on-ubuntu-18-04【参考方案2】:你可以试试这个
pip install ISR --no-deps
但是,您使用过 conda 吗?使用它来安装 Tensorflow 真的很容易。只是
conda install Tensorflow
(如果您没有从here 安装它)
最好的问候,ykostov
【讨论】:
以上是关于安装 TensorFlow Ubuntu 18.04的主要内容,如果未能解决你的问题,请参考以下文章
在ubuntu18.0下安装qt4.7以及qt-creator安装过程中遇到的坑
Ubuntu18.0 解决python虚拟环境中不同用户下或者python多版本环境中指定虚拟环境的使用问题
Ubuntu上安装TensorFlow(python2.7版)