ubuntu可以卸載python,下面介紹一個例子,完全卸載python for Ubuntu 14.04
#這裡以python3.4為例:
1、完全卸載python3.4(軟體及相關設定)
sudo apt-get remove --purge python3.4
2、完全卸載python3 .4及其依賴軟體(慎用!這裡會刪除python3.4及依賴python3.4的軟體包,一般上面第一條命令已經夠用)
相關推薦:《python視頻教學》
sudo apt-get remove --auto-remove python3.4 sudo apt-get purge --auto-remove python3.4
3、清除python3.4及其依賴軟體的安裝套件
sudo apt-get autoclean python3.4
TIPS:
此方法卸載python比較徹底,適合徹底更換python版本時使用。
-對於既想完全卸載python,又無法接受完全卸載後某些python組件無法使用的童鞋,請慎重! !
以上是ubuntu能卸載python嗎的詳細內容。更多資訊請關注PHP中文網其他相關文章!