aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/get_started/os_setup.md
diff options
context:
space:
mode:
authorGravatar Jonathan Hseu <jhseu@google.com>2017-02-06 15:47:34 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-02-06 16:12:38 -0800
commitf2a7b714e99af04a212ae0197018e713180b7614 (patch)
tree1bc58e3c794fdc102c4cdc47c9f877b9fbe9906d /tensorflow/g3doc/get_started/os_setup.md
parent44b11c4e9f0d778c5547b8b3d6b772b0fbed8079 (diff)
Bump the website and the dependency to use protobuf 3.2.0.
This version removes the 64 MB default limit for serialized proto sizes. Change: 146721509
Diffstat (limited to 'tensorflow/g3doc/get_started/os_setup.md')
-rw-r--r--tensorflow/g3doc/get_started/os_setup.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/tensorflow/g3doc/get_started/os_setup.md b/tensorflow/g3doc/get_started/os_setup.md
index 16f2686114..f526c17600 100644
--- a/tensorflow/g3doc/get_started/os_setup.md
+++ b/tensorflow/g3doc/get_started/os_setup.md
@@ -970,7 +970,7 @@ and you left the Cuda or cuDNN version empty, try specifying them explicitly.
### Protobuf library related issues
TensorFlow pip package depends on protobuf pip package version
-3.1.0. Protobuf's pip package downloaded from [PyPI](https://pypi.python.org)
+3.2.0. Protobuf's pip package downloaded from [PyPI](https://pypi.python.org)
(when running `pip install protobuf`) is a Python only library, that has
Python implementations of proto serialization/deserialization which can be
10x-50x slower than the C++ implementation. Protobuf also supports a binary
@@ -982,20 +982,20 @@ package:
```bash
# Ubuntu/Linux 64-bit:
-$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.1.0-cp27-none-linux_x86_64.whl
+$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.2.0-cp27-none-linux_x86_64.whl
# Mac OS X:
-$ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/protobuf-3.1.0-cp27-none-macosx_10_11_x86_64.whl
+$ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/protobuf-3.2.0-cp27-none-macosx_10_11_x86_64.whl
```
And for Python 3.5:
```bash
# Ubuntu/Linux 64-bit:
-$ pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.1.0-cp35-none-linux_x86_64.whl
+$ pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.2.0-cp35-none-linux_x86_64.whl
# Mac OS X:
-$ pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/protobuf-3.1.0-cp35-none-macosx_10_11_x86_64.whl
+$ pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/protobuf-3.2.0-cp35-none-macosx_10_11_x86_64.whl
```
If your system/configuration is not listed above, you can use the following
@@ -1203,7 +1203,7 @@ Traceback (most recent call last):
TypeError: __init__() got an unexpected keyword argument 'syntax'
```
-This is due to a conflict between protobuf versions (we require protobuf 3.1.0).
+This is due to a conflict between protobuf versions (we require protobuf 3.2.0).
The best current solution is to make sure older versions of protobuf are not
installed, such as: