本文主要是介绍TensorFlow安装在Linux下的anaconda上,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.安装好anaconda后,执行命令
anaconda search -t conda tensorflow
搜索一下有哪些tensorflow安装包,通过查看版本,选择最高的版本安装。
2. 执行下面代码来查看详细信息:anaconda show <USER/PACKAGE>,它就会告诉你,怎么来安装这个包,在终端执行,上面反馈的较高版本的TensorFlow为 HCC/tensorflow,
输入命令 anaconda show HCC/tensorflow ,返回结果如下:
3.根据返回提示安装TensorFlow。输入命令
conda install --channel https://conda.anaconda.org/HCC tensorflow
然后输入’y’,进行安装。
4.检测TensorFlow是否安装成功
在终端输入python,进入python编译环境,然后输入:
import tensorflow as tf
引包tensorflow包,如果没有报错,则安装成功,否则就有问题。然后可以输入
tf.__version__
tf.__path__
查看tensorflow的安装版本和安装路径(左右各两根下横线),结果如下
5、安装时,官网的下载速度可能很慢,可以添加清华的库
$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
$ conda config --set show_channel_urls yes
参考网址:http://www.cnblogs.com/denny402/p/5849416.html
https://blog.csdn.net/Gransand/article/details/80928791
这篇关于TensorFlow安装在Linux下的anaconda上的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!