linux下 python2.7 安装tensorflow 0.12

https://blog.csdn.net/rianbow1990/article/details/64920852

0.12版本 在python2.7中
TensorFlow-cpu 0.12版本
sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.0-cp27-none-linux_x86_64.whl
tensorflow-gpu 0.12版本
sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-0.12.0rc1-cp27-none-linux_x86_64.whl
1.0版本
tensorflow-cpu 1.0版本
sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.1-cp27-cp27m-linux_x86_64.whl
tensorflow-gpu 1.0版本
sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.0.1-cp27-cp27m-linux_x86_64.whl

你可能感兴趣的:(Python学习)