Tensorflow2.0 CPU版的安装并进行环境测试
嗯嗯。。。。就是最近搞深度学习安装环境,感觉找到了那种抓狂的感觉,环境配置真的繁琐,而且不同的版本或者电脑配置都可能导致你在网上找的教程无法照搬,真的希望以后不再配环境了。。。。好了今天主要是记录一下tensorflow2 cpu依赖的安装。以前都配置过又忘了,记录一下下次就不会浪费时间再环境上了
嗯嗯,网上都有很多的按照教程,是否适用根据自己的情况
但是他的方法我不行,所有分享一下我的配置流程
首先你的配置好python的环境,最好在3.6以上的版本,环境尽量使用最新的,跟随官方的步伐。
直接使用
pip install tensorflow==2.0 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com链接安装依赖
出现这样可以正常跑了,下载依赖最好使用国内的源,不然那个下载速度你会等哭的
相应的源参考
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣 http://pypi.douban.com/simple/pypi.douban.com
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
pip install 名字 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com这个可以安装几乎所有的依赖包
如果出现
Cannot uninstall ‘wrapt’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
可以输入
pip install -U --ignore-installed wrapt enum34 simplejson netaddr
当然也可以修改默认的下载源
这是参考https://www.cnblogs.com/caituotuo/p/14159989.html
最后如果出现如下的画面,恭喜你成功安装了
最后就是学习的举一反三,多做记录真的好记性不如烂笔头,以前我也不相信,后面吃了很多亏才发现这是真理,最后祝你安装顺利。