无法在Windows 7 32位上安装tensorflow

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

我无法在Windows 7,Python 3(32位,联想ThinkPad X201s)中安装TensorFlow。当我输入pip3 install tensorflow

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
C:\Users\sjkim>pip3 install tensorflow
Collecting tensorflow
  Could not find a version that satisfies the requirement tensorflow (from 
versions: )
No matching distribution found for tensorflow

C:\Users\sjkim>

我也有2个python版本。我该如何安装?

python tensorflow windows-7
1个回答
1
投票

TensorFlow仅针对64位x86系统进行测试和支持。我不相信你可以通过pip或conda通常从32位系统安装TensorFlow。您可以运行Linux docker容器思想docker for windows,但它基于vm并且它不支持gpu。

我已经为windows https://docs.docker.com/docker-for-windows/#switch-between-windows-and-linux-containers提供了一个32位的张量流,虽然它不是一个有用的东西。

32位进程只能使用2GB内存;复杂的模型不会加载。

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