From 162597019f32a273b2763341b3ed627e77f07006 Mon Sep 17 00:00:00 2001 From: Jason Date: Tue, 6 Dec 2016 15:08:20 +0800 Subject: [PATCH] Added small instruction in using conda environment manager to install TF --- install-mac-native.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/install-mac-native.md b/install-mac-native.md index f772de1..f2680e6 100644 --- a/install-mac-native.md +++ b/install-mac-native.md @@ -76,6 +76,21 @@ pip install --upgrade jupyter pip install --upgrade Pillow ``` +## Installing with Anaconda + +If you want to use Anaconda's environment manager, `conda`, follow these steps instead: + +``` +conda create --name tensorflow python=2.7 +source activate tensorflow +pip install --ignore-installed --upgrade protobuf +pip install --ignore-installed --upgrade tensorflow +pip install --ignore-installed --upgrade jupyter +pip install --ignore-installed --upgrade Pillow +pip install --ignore-installed --upgrade matplotlib + +``` + ## Running Jupyter From your "tensorflow" virtualenv prompt, run the following command: