完全卸载Python for ubuntu

1、卸载python3.4

sudo apt-get remove python3.4

2、卸载python3.4及其依赖

sudo apt-get remove --auto-remove python3.4

3、清除python3.4

sudo apt-get purge python3.4
or
sudo apt-get purge --auto-remove python3.4

注释:
此方法卸载python比较彻底,所以适合更换python版本时使用。
——对于既想完全卸载python,又无法接受完全卸载后某些python组件无法使用的童鞋,请慎重!!

原文链接:https://www.cnblogs.com/songfucai/p/7976623.html

猜你喜欢

转载自blog.csdn.net/ken1583096683/article/details/80276269