Ubuntu安装Tensorflow

前端之家收集整理的这篇文章主要介绍了Ubuntu安装Tensorflow前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

由于我的ubuntu是最新版的(ubuntu-16.04-desktop-amd64),里面自带的python是2.7.11。因此满足要求。由于tensorflow有三种安装方式,这里采用的是pip安装方式。下面开始安装tensorflow:
本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接http://www.linuxidc.com/Linux/2016-05/131568.htm

  • 首先安装pip

    sudo apt-get install python-pip python-dev

  • 利用pip安装tensorflow

sudo pip install –upgrade

  • 检验tensorflow是否安装成功

通过下面一段代码来测试tensorflow是否安装成功:
$ python

>>>  import tensorflow as tf
>>>  hello = tf.constant('Hello,TensorFlow!')
>>>  sess = tf.Session()
>>>  print(sess.run(hello))
Hello,TensorFlow!
>>>  a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
  • 安装python-numpy ,python-scipy,python-matplotlib

sudo apt-get install python-numpy

sudo apt-get install python-scipy

sudo apt-get install python-matplotlib

摘自:http://www.linuxidc.com/Linux/2016-05/131568.htm

原文链接:https://www.f2er.com/ubuntu/350861.html

猜你在找的Ubuntu相关文章