How to download previous version of tensorflow?

后端 未结 8 711
一生所求
一生所求 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:32

    The above answer does not work any more.

    You can install like this:

    curl -s https://storage.googleapis.com/tensorflow |xmllint --format - |grep whl
    
    linux/gpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl
    linux/gpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
    linux/gpu/tensorflow-0.11.0-cp27-none-linux_x86_64.whl
    linux/gpu/tensorflow-0.10.0-cp27-none-linux_x86_64.whl
    

    Then pick the model you want.

    Then you can run this kind of command :

    # Mac OS X, CPU only, Python 2.7:
    $ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.11.0-py2-none-any.whl
    

    Then install Tensorflow:

    # Python 2
    $ sudo pip install --upgrade $TF_BINARY_URL
    
    # Python 3
    $ sudo pip3 install --upgrade $TF_BINARY_URL
    

    Source: https://www.tensorflow.org/versions/r0.11/get_started/os_setup#download-and-setup

提交回复
热议问题