安装tensorflow慢、出现Cannot uninstall 'six'问题

1、安装

pip install tensorflow    (国外安装法、需要*、很慢!)

推荐使用清华镜像或者国内其他现成的镜像特别方便

pip install tensorflow -i https://pypi.douban.com/simple
pip install tensorflow -i https://pypi.tuna.tsinghua.edu.cn/simple/

2、卸载

pip uninstall tensorflow

3、出现Cannot uninstall 'six'、"wrapt'、Werkzeug'等依赖库问题.
因为版本问题可能无法安装出现如下错误:
安装tensorflow慢、出现Cannot uninstall 'six'问题
可以在安装tensorflow时忽略掉

pip install tensorflow  –ignore-installed wrapt

还是有错误的话,建议找到改文件所在目录,如下找到“wrapt”将该文件删除
安装tensorflow慢、出现Cannot uninstall 'six'问题
删除后再重新安装一下tensorflow,应该就可以了

上一篇:python画图汇总(持续更新)


下一篇:[Oracle整理]ORA-12705(字符集问题)