Can't install tensorflow on windows 7 32-bit

▼魔方 西西 提交于 2021-02-05 10:45:08

问题


I can't install TensorFlow in Windows 7, Python 3(32-bit, Lenovo ThinkPad X201s). When I type 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>

And I also have 2 python versions. How can I install it?


回答1:


TensorFlow is only tested and supported for 64-bit, x86 systems. I don't believe you can install TensorFlow through pip or conda normally from a 32-bit system. You CAN run a linux docker container thought docker for windows, but it is based on vm and it didn't support gpu.

I have provided a 32 bit tensorflow built for windows https://docs.docker.com/docker-for-windows/#switch-between-windows-and-linux-containers, although it's not a helpful thing.

32-bit process can use only 2GB memory; a complex model would not load.



来源:https://stackoverflow.com/questions/52178508/cant-install-tensorflow-on-windows-7-32-bit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!