码迷,mamicode.com
首页 > 系统相关 > 详细

mac使用pip3安装tensorflow(不用conda)

时间:2019-11-15 14:15:49      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:on()   const   class   http   cpu   googl   tps   out   匹配   

在终端中输入pip3 install tensorflow回提示一个当先版本匹配不到的错误提示

在终端中输入:

pip3 --default-timeout=10000 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.3.0-py3-none-any.whl

测试代码:

import tensorflow as tf

str = tf.constant(‘hello‘)

print(str)

sess = tf.Session()

rs = sess.run(str)

print(rs)

#b‘hello‘

type(rs)

#<class ‘byte‘>

mac使用pip3安装tensorflow(不用conda)

标签:on()   const   class   http   cpu   googl   tps   out   匹配   

原文地址:https://www.cnblogs.com/mituzhifan-/p/11865745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!