File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
tensorflow/g3doc/get_started Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ $ pip install https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.5
26
26
27
27
### Mac OS X <a class =" md-anchor " id =" AUTOGENERATED-mac-os-x " ></a >
28
28
29
+ On OS X, we recommend installing [ homebrew] ( http://brew.sh ) and `brew install
30
+ python` before proceeding, or installing TensorFlow within [ virtualenv] ( #virtualenv_install ) .
31
+
29
32
``` bash
30
33
# Only CPU-version is available at the moment.
31
34
$ pip install https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
@@ -363,12 +366,15 @@ If you encounter:
363
366
ImportError : No module named copyreg
364
367
```
365
368
366
- Solution: TensorFlow depends on protobuf which require six-1.10.0. The
367
- installation on some machines may only have an earlier version of six that was
368
- installed using distutils. Unfortunately, upgrading a distutils installed
369
- project via ` pip ` is deprecated and may fail. If you having difficulty
370
- upgrading six, we recommend playing around with tensorflow using virtualenv.
369
+ Solution: TensorFlow depends on protobuf which require six-1.10.0. Apple's
370
+ default python environment has six-1.4.1 and may be difficult to upgrade.
371
+ So we recommend either installing a separate of python via homebrew:
372
+
373
+ ``` bash
374
+ brew install python
375
+ ```
371
376
377
+ or building / using TensorFlow within ` virtualenv ` as described above.
372
378
373
379
374
380
You can’t perform that action at this time.
0 commit comments