在Linux操作系统下的安装Tensorflow

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/GISLN/article/details/79056315

1、必不可少的python-pip和python-dev

在窗口中输入命令:

$ sudo apt-get install python-pip python-dev

2、此时就可以安装Tensorflow了,指令如下:

#Ubuntu/Linux64-bit, CPU only, Python 2.7
$export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow- 1.1 .0-cp27-none-linux_x86_64.whl
#Python 2
$sudo pip install $TF_BINARY_URL
3、TFLearn Installation

指令:

pip install git+https://github.com/tflearn/tflearn.git

猜你喜欢

转载自blog.csdn.net/GISLN/article/details/79056315