requirement pyenv anaconda tensorflow
install pyenv
pyenv local anaconda3-XXX
create virtual env
conda create -n tensorflow python=3.5 anaconda
activate
source activate tensorflow
install tensor flow by pip
pip install --ignore-installed --upgrade \
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.3.0-py2-none-any.whl
confirm
python
>>> import tensorflow as ts
jupyter notebook
jupyter notebook
Recommended Posts