mac使用pip3安装tensorflow(不用conda)
Posted mituzhifan-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac使用pip3安装tensorflow(不用conda)相关的知识,希望对你有一定的参考价值。
在终端中输入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)的主要内容,如果未能解决你的问题,请参考以下文章