Tensorflow 学习笔记(一)mac os 安装 tensorflow

Homebrew 安装python

brew install python

安装pip

curl ‘https://bootstrap.pypa.io/get-pip.py’ > get-pip.py
python get-pip.py

ps: 安装完之后注意在PATH中指定pip的路径

安装tensorflow

pip3 intall tensorflow

安装中可能会出现timeout error,此时可以尝试:

pip --default-timeout=1000 install -U tensorflow

或者

#python 2.7, cpu only
下载https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.11.0rc0-py2-none-any.whl文件 pip
install xx.whl

#python 3.6, cpu only
下载https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.11.0rc0-py3-none-any.whl文件
pip install xx.whl

安装keras

pip3 install keras

验证安装是否正确

python

import tensorflow as tf

from keras.models import Sequential

hello = tf.constant('Hello, TensorFlow!')

sess = tf.Session()

sess.run(hello)

model = Sequential()

 

自此,tensorflow安装完毕,后面会逐渐用tensorflow写一些实例

 

转载于:https://www.cnblogs.com/lightsun/p/9483261.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值