Ubuntu搭建TensorFlow环境

所用环境

  • 阿里云1核2G小型服务器
  • Ubuntu 16.04 64 位操作系统
  • Python 2.7.12
  • TensorFlow 1.3.0

具体步骤如下:

安装pip

apt-get install python-dev python-pip
Ubuntu搭建TensorFlow环境_第1张图片
安装pip

安装TensorFlow

export TF_BINARY_URL=https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/tensorflow-1.3.0-cp27-none-linux_x86_64.whl

我使用的是清华大学开源软件镜像站。

pip install $TF_BINARY_URL
Ubuntu搭建TensorFlow环境_第2张图片
TensorFlow安装过程1

Ubuntu搭建TensorFlow环境_第3张图片
TensorFlow安装过程2

测试是否搭建成功

Ubuntu搭建TensorFlow环境_第4张图片
测试

如果搭建成功应如上图显示版本信息。

你可能感兴趣的:(Ubuntu搭建TensorFlow环境)