1.创建虚拟环境时:An unexpected error has occurred. Conda has prepared the above report.
解决方法:
https://blog.youkuaiyun.com/weixin_42236288/article/details/100854878
2.pip install tensorflow超时异常
解决方法:采用国内源https://blog.youkuaiyun.com/Warship_/article/details/86755281
注意安装的时cpu还是gpu以及版本号
pip install --index-url https://pypi.douban.com/simple tensorflow.gpu==1.2.0
使用pip安装超时的通用解决方法:
pip install -i https://pypi.doubanio.com/simple/ 包名
https://blog.youkuaiyun.com/qq_39161804/article/details/81191977
3.检测tensorflow是否可以使用GPU,显示是cpu就是cpu的信息,显示是gpu就是gpu的信息。
https://blog.youkuaiyun.com/lwhsyit/article/details/89465387