配置tensorflow之前先要装好Anaconda
Anaconda下载地点:https://www.anaconda.com/download/
在Windows上面装Tensorflow只撑持Python3.5以上的版本
配置法式:
1、在conda安置好之后,如果是在线安置,因为官方的镜像在*,为了加快下载速度可以先将源改成国内的镜像,这里用的是清华的镜像,在命令中运行
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes
2、创建一个虚拟环境,在命令中运行
conda create -n tensorflow python=3.6
这里tensorflow是文件名,文件创建在Anaconda下的envs里面,,后面只指定python的版本号
3、激活tensorflow环境
activate tensorflow
这里的tensorflow是文件名
4、在线安置tensorflow
conda install tensorflow
这里的tensorflow不是文件名
之后就是进行在线安置了,安置完了之后可以用下面的语句测试一下,在命令行输入
python >>import tensorflow as tf >>hello = tf.constant(‘Hello, Tensorflow!‘) >>sess = tf.Session() >>print(sess.run(hello)) >>a = tf.constant(10) >>b = tf.constant(22) >>print(sess.run(a+b))
如果使用了pycharm的话,可以在file->settings->project interpreter将项目解释器改成在Anaconda下面envs中的python.exe
参考:
本篇将连续更新,如果您感受解决了您的问题的话,但愿能点一下右下角的保举,感谢!