首页 > 解决方案 > 如何让 TensorFlow 安装在我的计算机上?点安装不工作

问题描述

我正在尝试为一些简单的计算机视觉识别程序运行 tensorflow,但是每次尝试使用 Visual Studio Code 安装库时都会收到错误声明。我正在使用 Python 3.8。以下是我尝试 pip 安装时遇到的错误。

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

非常感谢您的帮助!谢谢你。

标签: pythontensorflowinstallationpipcomputer-vision

解决方案


您需要拥有最新版本的 pip 才能安装 tensorflow。您可以使用以下命令升级 pip:

python -m pip install --upgrade pip

升级 Pip 后,它应该可以正常工作。


推荐阅读