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組件無法使用的童鞋,請慎重!!
