ubuntu 下TensorFlow安装

本机ubuntu16.04自带Python2.7.13,已安装anaconda:
这里写图片描述

开始安装:

1. 建立 conda 计算环境

conda create -n tensorflow python=2.7

中间 Proceed([y]/n)?  选  y

这里写图片描述

2. 激活环境,使用 conda 安装

source activate tensorflow

中间 Proceed([y]/n)?  选 y

这里写图片描述

结果报错………….

这里写图片描述

3. 查看conda list

运行

conda list

这里写图片描述

4. 安装TensorFlow

运行

conda install tensorflow

这里写图片描述

安装成功:

这里写图片描述

测试:

import tensorflow as tf
mat1 = tf.constant([[3., 4.]])
mat2 = tf.constant([[1.], [2.]])
product = tf.matmul(mat1, mat2)
sess = tf.Session()
result = sess.run(product)
print result
sess.close()

输出:

[[ 11.]]

伴有警告:

tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.

tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.

tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations.

=======================================
TensorFlow库未编译为使用SSE4.1指令,但这些指令可在您的计算机上使用,并可加速CPU计算。

<只是警告,尚未找到消除方法….有解决方法的兄台可在评论里告知,感谢>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值