美文网首页我爱编程
Ubuntu搭建TensorFlow环境

Ubuntu搭建TensorFlow环境

作者: EnweTu | 来源:发表于2018-03-20 17:52 被阅读0次

所用环境

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

具体步骤如下:

安装pip

apt-get install python-dev python-pip
安装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
TensorFlow安装过程1
TensorFlow安装过程2

测试是否搭建成功

测试

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

相关文章

网友评论

    本文标题:Ubuntu搭建TensorFlow环境

    本文链接:https://www.haomeiwen.com/subject/nlbbqftx.html