pycharm无法在Windows 10上安装Tensorflow

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

我尝试

pip install --user --upgrade pip

pip install tensorflow

pip3 install tensorflow

Terminal

Add python interpreter

Settings

RunDebugConfigurations

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

python tensorflow pycharm virtualenv
1个回答
0
投票

Ravisut,

您似乎输入了正确的命令。根据您的输入,您似乎已安装了32位Python版本。 Tensorflow仅在Python 64位上受支持。因此,请安装64位版本的Python,然后重试。

此后,如果仍然有问题,请尝试以下线程:TensorFlow not found using pip

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

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