Anaconda+tensorflow_gpu+keras环境搭建小结
(anaconda、cuda、cudnn在安装pytorch环境时已经安装过,本篇主要记录搭建环境中遇到的问题)
安装环境时强烈推荐咕噜汪“一定要看的Tensorflow-GPU+Keras安装教程”
1.安装tensorflow_gpu遇到的坑
1、查阅很多博主的博客之后,发现如果有NVIDIA的显卡,一定要先查看自己电脑所需的cuda版本
桌面右键单击NVIDIA控制面板–>左下角的系统信息–>组件中查看
2、ERROR:During handling of the above exception, another exception occurred安装tensorflow——gpu出现超时等状况,可能是因为网速慢,但是最好还是换镜像源
1)超时处理:pip --default-timeout=1000000 install Package
Package时需要安装的库名
2)更改镜像源:记事本打开C:\Users目录下.condarc文件,更改已下内容,换成清华源(换源之后下载速度会噌噌噌哦)
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
ssl_verify: true
3、升级pip时遇到 Cannot open D:\Program Files\Anaconda3\Scripts\pip-script.py 问题
这个问题还是pip安装的问题,所以可以在命令行窗口(或者win+r) 输入:
easy_install pip
4、ERROR: tensorflow_gpu-2.2.0-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform.版本不匹配问题
修改python版本,或者修改所需安装库的版本