Installing tensorflow on windows

后端 未结 8 2372
清酒与你
清酒与你 2021-01-18 11:05

I\'m trying to install tensorflow on windows. I have python3 (3.5.2) and pip3 (9.0.1):

pip3 install --upgrade tensorflow

Collecting tensorflow

  Could not          


        
8条回答
  •  萌比男神i
    2021-01-18 11:51

    Try the following at a Python command prompt:

    import platform
    platform.architecture()[0]
    

    It should display '64bit' Just having an x86 version of Python isn't enough. I had the same problem. Thought I had a 64 bit installation but it turned out to be 32 bit.

    BTW. it will also work fine with the Conda Python 3.6 distribution. And indeed use the distro from the Gohlke page as indicated by Guillaume Jacquenot.

提交回复
热议问题