pycharm 无法在 windows 10 上安装 Tensorflow

pycharm can't install Tensorflow on windows 10

我尝试

pip install --user --upgrade pip

pip install tensorflow

pip3 install tensorflow

Terminal

Add python interpreter

Settings

RunDebugConfigurations

可用包 收集张量流 找不到满足 tensorflow 要求的版本(来自版本:) 找不到与 tensorflow 匹配的分布 enter image description here

拉维苏特,

您似乎输入了正确的命令。根据您的输入,您似乎安装了 32 位 Python 版本。 Tensorflow 仅在 Python 64 位上受支持。所以安装64位版本的Python再试一次。

之后,如果您仍然遇到问题 - 试试这个线程:TensorFlow not found using pip

特别是尝试使用 whl 文件安装: python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.1.0-cp37-cp37m-manylinux2010_x86_64.whl
您可能需要在此处选择相关的 TF 版本 ():https://www.tensorflow.org/install/pip

安装 Python 3.7 64 位和 pip 安装 tensorflow ...成功

enter image description here