Ubuntu14.04(python2.7)下pip安装
更新源包
$ sudo apt-get update
安装pip
$ sudo apt-get install python-pip
安装TensorFlow(cpu版本)
$ pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl
python入门例程
#创建两个常量(向量) a,b
a=[1.,2.]
b=[3.,1.]
#求和
c=a+b
#打印结果
print("HelloWorld")
print(c)
a=1
b=2
c=a+b
print(c)