@@ -8,11 +8,11 @@ github source.
88The TensorFlow Python API supports Python 2.7 and Python 3.3+.
99
1010The GPU version works best with Cuda Toolkit 8.0 and
11- cuDNN v5. Other versions are supported (Cuda toolkit >= 7.0 and
11+ cuDNN v5.1. Other versions are supported (Cuda toolkit >= 7.0 and
1212cuDNN >= v3) only when installing from sources.
1313Please see [ Cuda installation] ( #optional-install-cuda-gpus-on-linux ) for
14- details. For Mac OS X, please see [ Setup GPU for
15- Mac] ( #optional-setup-gpu-for-mac ) .
14+ details. For Mac OS X, please see
15+ [ Setup GPU for Mac] ( #optional-setup-gpu-for-mac ) .
1616
1717## Overview
1818
@@ -43,8 +43,8 @@ If you encounter installation errors, see
4343[ Pip] ( https://en.wikipedia.org/wiki/Pip_(package_manager) ) is a package
4444management system used to install and manage software packages written in
4545Python. We provide pip packages for TensorFlow on Linux, Mac OS X, and
46- Windows. For Windows instructions, please see [ Pip installation on
47- Windows] ( #pip-installation-on-windows ) .
46+ Windows. For Windows instructions, please see
47+ [ Pip installation on Windows] ( #pip-installation-on-windows ) .
4848
4949The packages that will be installed or upgraded during the pip install are
5050listed in the [ REQUIRED_PACKAGES section of
@@ -507,7 +507,7 @@ the Docker container.
507507### (Optional, Linux) Enable GPU Support
508508
509509If you installed the GPU version of TensorFlow, you must also install the Cuda
510- Toolkit 8.0 and cuDNN v5. Please see [ Cuda
510+ Toolkit 8.0 and cuDNN v5.1. Please see [ Cuda
511511installation] ( #optional-install-cuda-gpus-on-linux ) .
512512
513513You also need to set the ` LD_LIBRARY_PATH ` and ` CUDA_HOME ` environment
@@ -661,7 +661,7 @@ Install the toolkit into e.g. `/usr/local/cuda`.
661661
662662[ https://developer.nvidia.com/cudnn ] ( https://developer.nvidia.com/cudnn )
663663
664- Download cuDNN v5.
664+ Download cuDNN v5.1.
665665
666666Uncompress and copy the cuDNN files into the toolkit directory. Assuming the
667667toolkit is installed in ` /usr/local/cuda ` , run the following commands (edited
@@ -937,20 +937,20 @@ package:
937937
938938``` bash
939939# Ubuntu/Linux 64-bit:
940- $ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.0 .0-cp27-none-linux_x86_64.whl
940+ $ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.1 .0-cp27-none-linux_x86_64.whl
941941
942942# Mac OS X:
943- $ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/protobuf-3.0 .0-cp27-cp27m -macosx_10_11_x86_64.whl
943+ $ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/protobuf-3.1 .0-cp27-none -macosx_10_11_x86_64.whl
944944```
945945
946946And for Python 3.5:
947947
948948``` bash
949949# Ubuntu/Linux 64-bit:
950- $ pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.0 .0-cp35-cp35m -linux_x86_64.whl
950+ $ pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.1 .0-cp35-none -linux_x86_64.whl
951951
952952# Mac OS X:
953- $ pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/protobuf-3.0 .0-cp35-cp35m -macosx_10_11_x86_64.whl
953+ $ pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/protobuf-3.1 .0-cp35-none -macosx_10_11_x86_64.whl
954954```
955955
956956If your system/configuration is not listed above, you can use the following
@@ -1126,7 +1126,7 @@ Traceback (most recent call last):
11261126TypeError: __init__() got an unexpected keyword argument 'syntax'
11271127```
11281128
1129- This is due to a conflict between protobuf versions (we require protobuf 3.0 .0).
1129+ This is due to a conflict between protobuf versions (we require protobuf 3.1 .0).
11301130The best current solution is to make sure older versions of protobuf are not
11311131installed, such as:
11321132
0 commit comments