![]() |
|
How do I uninstall GIMP 3 beta on Ubuntu? - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: Installation and usage (https://www.gimp-forum.net/Forum-Installation-and-usage) +---- Forum: Linux and other Unixen (https://www.gimp-forum.net/Forum-Linux-and-other-Unixen) +---- Thread: How do I uninstall GIMP 3 beta on Ubuntu? (/Thread-How-do-I-uninstall-GIMP-3-beta-on-Ubuntu) |
How do I uninstall GIMP 3 beta on Ubuntu? - Fennec72 - 09-14-2025 Hello, How do I uninstall GIMP 3 beta on Ubuntu? How do I do this using the command line? Thank you in advance, Best regards, Hervé RE: How do I uninstall GIMP 3 beta on Ubuntu? - Ofnuts - 09-15-2025 Depends how you installed it: flatpak uninstall, apt-get remove, ... RE: How do I uninstall GIMP 3 beta on Ubuntu? - congress_sandbar - 03-19-2026 open the terminal, run this command: dpkg -l | grep gimp If it shows you can simply uninstall with Code: sudo dpkg -r <packagename from the earlier command from first column without brackets>otherwise use the flatpak command from the earlier post.
Code: sudo apt-get remove <packagename>RE: How do I uninstall GIMP 3 beta on Ubuntu? - rich2005 - 03-19-2026 For a regular installation ubuntu / debian / mint - from the repo Code: sudo apt purge gimpCode: sudo apt autoremove |