How to download the previous version of tensor flow?

For some reason, I want to use some previous version of tenorflow ('tensorflow - ** -. Whl', not the source code on github) and where can I download the previous version and how to find out the corresponding cuda version , which is compatible.

+6
source share
6 answers

You can always download the previous version of tensorflow.

from here

In the upper left corner you can change the version

enter image description here

+3
source

Find the available versions (some examples are shown):

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

You can, of course, filter the results further by laying out additional instances of grep .

Select the version you need and install for Python using pip ...

 $ TFVERSION=linux/gpu/tensorflow-0.10.0-cp27-none-linux_x86_64.whl $ pip install https://storage.googleapis.com/tensorflow/$(TFVERSION) 

Note. cp27 in the list above indicates compatibility with Python version 2.7.

+11
source

The above answer no longer works.

You can set the following:

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

Then select the desired model.

Then you can run a command like this:

 # 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

+6
source

Its work for me on the windows since I have 1.6

pip install tensorflow == 1.5

+4
source
+1
source

You can do as suggested in advance and find an available version on the tesorflow website , but you cannot access versions older than what is available there.

So if you want an earlier version:

0
source

Source: https://habr.com/ru/post/1012009/


All Articles