Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions install-mac-native.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down