在 Debian 系统中卸载 GIMP,可以根据你使用的包管理方式选择以下方法:
apt(最常见)sudo apt remove gimp
sudo apt purge gimp
sudo apt autoremove
aptitude 安装的sudo aptitude remove gimp
或
sudo aptitude purge gimp
查看是否还有 GIMP 相关包:
dpkg -l | grep gimp
如果有,可逐个删除,例如:
sudo apt purge gimp-data gimp-plugin-registry
flatpak uninstall org.gimp.GIMP
sudo snap remove gimp
which gimp
如果没有输出,说明已成功卸载。
如果你不确定 GIMP 是通过哪种方式安装的,可以告诉我,我可以帮你一步步排查。