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.
nobar source share