安装tensorflow-gpu遇到的问题及总结

anacond最新版 python3.7 
cuda 9.0
cudnn 7.0
vs2019 只勾选桌面开发

参考网站:
https://www.jianshu.com/p/67619111f7a2
https://blog.csdn.net/dy_guox/article/details/79081499
①https://blog.csdn.net/j879159541/article/details/93199150 
②https://blog.csdn.net/weixin_38109583/article/details/93376954
③https://blog.csdn.net/Audrey_Hepburn_1/article/details/101642694
④https://blog.csdn.net/qq_44774398/article/details/99832436
我参考的视频网站
⑤https://www.bilibili.com/video/av62161513
⑥https://blog.csdn.net/inkflow/article/details/79943232
--------------------------------------------------------------------------------------------------------
1.
快速安装tensorflow-GPU 国内镜像

python -m pip install tensorflow-gpu==1.15.0  -i https://pypi.tuna.tsinghua.edu.cn/simple/   成功
python -m pip install tensorflow-gpu===2.0  -i https://pypi.tuna.tsinghua.edu.cn/simple/    成功

tensorflow低于1.13 不成功


2.卸载
 pip uninstall tensorflow-gpu
------------------------------------------------------------------------------------------------
国内最快的镜像

阿里云 
http://mirrors.aliyun.com/pypi/simple/
 
中国科技大学 
https://pypi.mirrors.ustc.edu.cn/simple/
 
豆瓣(douban) 
http://pypi.douban.com/simple/
 
清华大学 
https://pypi.tuna.tsinghua.edu.cn/simple/
 
中国科学技术大学 

---------------------------------------------------------------------
2.遇到的问题
问题一:
运行tensorflow-gpu==1.14 时候遇到的问题
ImportError: DLL load failed: 找不到指定的模块。有可能版本问题

问题二:
cudart64_100.dll 缺少 这个软件改一下就可以啦!

问题三:


3.测试tensorflow-gpu命令

import tensorflow as tf

hello=tf.constant("hello, tensorflow")

sess=tf.Session()

print(sess.run(hello))


注意上面只有tensorflow-gpu==1.15版本测试成功

tensorflow-gpu==2.0 第二步未测试成功

***********************************************************
大总结:
我的安装步骤
查看自己电脑是否支持安装深度学习(需要英伟达桌面管理,cuda,cudnn)
1.下载python
2.下载vs2019社区版本
3.下载cuda  cuda_9.0.176_win10.exe
4.下载cudnn cudnn-9.0-windows10-x64-v7.6.5.32.zip
5.配置cuda和cudn环境变量
##############
6.参考教程
##############
https://blog.csdn.net/j879159541/article/details/93199150
7.安装遇到的问题参考上面

 

你可能感兴趣的:(学习笔记整理)