Saturday, January 20, 2018

Install TensorFlow on Mac OS 10.13

1. sudo -H pip3 install tensorflow --pre
Why not install the current release version? Cause there's a bug complaining the 3.5/3.6 compatible issue. You you also install the nightly build which is not stable I think. So pre version should be fine for a beginner like me.

2. python3 -c 'import tensorflow as tf; print(tf.__version__)'

This commands checks the TensorFlow version we have installed:
1.5.0-rc1

3. Note that you see a warning when you import tensorflow, more details here:
https://github.com/chiphuyen/stanford-tensorflow-tutorials/blob/master/setup/setup_instruction.md

4. All good to go now. It's time to play, TF boys.

No comments: