ubuntu删除Python的方法:
在ubuntu操作系统中打开终端命令行。
可输入以下命令进行删除,命令如:
sudo apt-get remove python3 # 卸载python3
sudo apt-get remove --auto-remove python3 # 卸载python3及其依赖
sudo apt-get purge python3 或 sudo apt-get purge --auto-remove python3 # 清除python3
注意:Ubuntu依赖python环境,删除前需慎重考虑。