赞
踩
conda install six numpy wheel
conda install mingw libpython
conda install theano
conda install keras
tensorflow输出hello world的程序:
**import tensorflow as tf
hello = tf.constant('Hello, world!')
sess = tf.Session()
print(sess.run(hello))
sess.close()**
如果想要装对应版本的模块,可以在后面直接==模块版本
或者下载对应的离线包,对于.whl的文件,将文件放在\Scripts文件夹里,cmd进入后,pip install 加文件全名即可(注意包括后缀),注意使用conda命令会失败,因为conda命令没法选择版本,而pip可以,所以可以安装Anaconda,然后conda,pip命令都可以使用。
参考:
[1] Tensorflow->安装->在 Windows 环境中从源代码编译:https://tensorflow.google.cn/install/source_windows
[2] 如何安装keras:https://blog.csdn.net/yangqiang200608/article/details/78719568?locationNum=9&fps=1
[3] Tensorflow之基本操作及hello world:https://blog.csdn.net/haoronge9921/article/details/80972907
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。