Ubuntu1604 install tensorflow and tensorflow

Source: Internet
Author: User

Ubuntu1604 install tensorflow and tensorflow

Operating System: ubuntu-16.04.2-desktop-amd64
Tensorflow version: 1.0.0
Python version: 2.7.12

Enable ssh:

sudo apt install openssh-server     sudo service ssh start

Install pip:

sudo apt-get install python-pip

Install tensorflow:

Github address: https://github.com/tensorflow/tensorflow

wget https://ci.tensorflow.org/view/Nightly/job/nightly-matrix-cpu/TF_BUILD_IS_OPT=OPT,TF_BUILD_IS_PIP=PIP,TF_BUILD_PYTHON_VERSION=PYTHON2,label=cpu-slave/lastSuccessfulBuild/artifact/pip_test/whl/tensorflow-1.0.0-cp27-none-linux_x86_64.whlsudo pip install tensorflow-1.0.0-cp27-none-linux_x86_64.whl

Sample Code:

#! /usr/bin/env python#-*- coding:utf-8 -*-import tensorflow as tfhello = tf.constant('Hello, TensorFlow!')sess = tf.Session()print sess.run(hello)a = tf.constant(10)b = tf.constant(32)print sess.run(a+b)

Okay, that's all. I hope it will help you.

Github address:

Bytes

Please add

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.