python安装失败如何卸载干净_彻底卸载Python环境及安装的Python模块
由于之前安装过python,安装anaconda的时候提示:not recommended. instead,open anaconda with the windows start menu and select (anaconda 64bit),this “and to path” option makes anaconda get found before previously installed software,but may cause problems requiring you to uninstall and reinstall anaconda
如何彻底卸载Python?
1、使用pip安装的模块
pip list得到所有通过pip安装的软件
依次pip uninstall [模块]
卸载pip(因为我机器上的pip是通过python setup.py安装的,卸载提示成功后报错了,不知道会不会有什么后遗症,先卸载着吧)
2、使用easy_install安装的模块
没用easy_install安装过,跳过。。
3、使用python setup.py install安装的模块
使用python setup.py uninstall来卸载
不过我一般很少用这种安装方式,也不太记得自己安装了些什么了,跳过。。—-》以后尽量用pip安装
3、卸载Python本身
控制面板卸干净,检查清理下残余环境变量path、classpath、python_home等
删掉安装文件夹
总结
以上是生活随笔为你收集整理的python安装失败如何卸载干净_彻底卸载Python环境及安装的Python模块的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: spring 5企业级开发实战pdf_S
- 下一篇: 在将varchar值id转换为int时失