Skip to content

Instantly share code, notes, and snippets.

@fbchow
Last active April 4, 2018 21:58
Show Gist options
  • Save fbchow/7b1b039023e3f54b198e590c87bb7f26 to your computer and use it in GitHub Desktop.
Save fbchow/7b1b039023e3f54b198e590c87bb7f26 to your computer and use it in GitHub Desktop.
Downloading Tensorflow on Mac for Conda Users
Terminal:
$conda create --name tensorflow
$source activate tensorflow
$pip install tensorflow
Check :
$python
import tensorflow as tf
Every time you want to use tensorflow:
$source activate tensorflow
Don't want to use ternsorflow anymore/ quit the terminal or type this:
$source deactivate tensorflow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment