首頁 > 軟體

TensorFlow安裝與測試

2020-06-16 17:35:02

TensorFlow安裝與測試

TensorFlow官網:http://tensorflow.org/
安裝步驟:
1、sudo apt-get install Python-pip python-dev python-virtualenv

2、virtualenv --system-site-packages ~/tensorflow

3、cd ~/tensorflow

4、source bin/activate # If using bash

5、(tensorflow)$ pip install --upgrade tensorflow-0.5.0-cp27-none-linux_x86_64.whl

測試:

1、開啟終端輸入cd tensorflow

2、source bin/activate

3、python

4、輸入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)
42
>>>

5、測試成功接下來首先退出python 按快捷鍵Ctrl+D

6、再退出tensorflow 在命令列輸入命令:deactivate

本文永久更新連結地址http://www.linuxidc.com/Linux/2016-08/134547.htm


IT145.com E-mail:sddin#qq.com