How to download previous version of tensorflow?

后端 未结 8 686
一生所求
一生所求 2020-12-08 03:12

For some reason, I want to use some previous version of tensorflow(\'tensorflow-**-.whl\', not source code on github) and where can I download the previous version and how c

相关标签:
8条回答
  • 2020-12-08 03:39

    in order to find out available previous versions all you need to do is either use :

    pip search tensorflow-gpu or pip search tensorflow

    conda search tensorflow-gpu or conda search tensorflow

    and to install them even:

    pip install tensorflow-gpu==1.15.0 or pip install tensorflow==1.15.0

    conda install tensorflow-gpu==1.15.0 or conda install tensorflow==1.15.0

    my experience conda search is much much cleaner and easier to find packages.

    0 讨论(0)
  • 2020-12-08 03:43

    You can always download the previous version of tensorflow version

    from here

    Here on the top left you can change the version

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