Last active
April 4, 2018 21:58
-
-
Save fbchow/7b1b039023e3f54b198e590c87bb7f26 to your computer and use it in GitHub Desktop.
Downloading Tensorflow on Mac for Conda Users
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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