Installing tensorflow on windows

后端 未结 8 2227
清酒与你
清酒与你 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条回答
  • 2021-01-18 12:04

    I have written a blog over this topic, you might find it interesting and helpful:

    Mainly issue that people face is they install 32 bit python:

    Solution as follows

    Install Python 3.6 (Note down installation path, or simply custom install to C:\Python36) in your system - Make sure that Python is of "x64" architecture.

    To check your python architecture

    Import platform
    platform.architecture()[0]
    

    Link to download Python36 with 64 bit architecture : https://www.python.org/ftp/python/3.6.2/python-3.6.2-amd64.exe

    For more info you can follow the this link https://tensorflowwindows.quora.com/

    0 讨论(0)
  • 2021-01-18 12:05

    You can download binary wheel from Christoph Gohlke's webpage

    Once downloaded, you can run pip install tensorflow‑1.0.1‑cp35‑cp35m‑win_amd64.whl for Python 3.5 64 bit

    0 讨论(0)
提交回复
热议问题