Install tensorflow version 0.12

后端 未结 3 477
孤街浪徒
孤街浪徒 2021-01-25 08:25

How can i install the tensorflow 0.12 on windows x64 CPU.

If it is nowhere to be found

I tried to install through pip for python 3.6. Did not work out



        
相关标签:
3条回答
  • 2021-01-25 08:40

    tensorflow 0.12.0 was only released for Python 3.5, not 3.6

    tensorflow 0.12.1 was released for Python 3.6 but only on Linux and MacOS.

    If you instist on installing version 0.12 your best bet is to try tensorflow 0.12.1 installed for Python 3.5:

    py -3.5 -m pip install tensorflow==0.12.1
    
    0 讨论(0)
  • 2021-01-25 08:50

    Although the thread is about windows system but sharing it for the ubuntu users as well. That's how I downloaded it in my ubuntu 1804 system after following the comment of @phd,

    1. created a conda enviornment using python 3.5 conda create -n tf012 python=3.5
    2. and then installed TF 0.12 with pip install tensorflow==0.12
    0 讨论(0)
  • 2021-01-25 08:58

    The only version 0.X available on pypi is the 0.12.1 for python 3.6, hence you can run

    pip install tensorflow==0.12.1
    
    0 讨论(0)
提交回复
热议问题