How to Completely Uninstall Eclipse IDE from macOS
- Details
- Written by Nam Ha Minh
- Last Updated on 07 April 2024   |   Print Email
In this post, I’d like to share some tips that help you remove Eclipse IDE completely from macOS operating system. Follow these steps to uninstall Eclipse IDE on Mac, no matter how it was installed (by installer or zip package):
1. Delete shortcut of Eclipse IDE you created on Dock or Launchpad (right click > Move to Trash)
2. Delete files in your user home directory:
- Eclipse application file (right click > Move to Trash)
- all files in the .p2directory where Eclipse plugin binaries. Use the following command in terminal: sudo rm -rf .p2
- all files in the .m2 directory where Eclipse stores dependencies in local repository. Use the following command in terminal: sudo rm -rf .m2
3. Delete all files whose name start with org.eclipse in the following locations:
~/Library/Caches
~/Library/Preferences
~/Library/Saved Application State
For example, use the following command in terminal:
cd $HOME/Library/Caches
sudo rm -rf org.eclipse.*
Note that you will need to provide admin password to execute sudo command. And finally, restart your Mac computer then you will get Eclipse IDE completely uninstalled.
Learn more about using Eclipse IDE:
- What is Eclipse IDE? - for beginner
- How to use Eclipse IDE for Java EE Developers
- How to import existing projects into Eclipse workspace
- How to create, deploy and run Java Servlet in Eclipse
- How to generate JAR file in Eclipse
- How to create WAR file for Java web application in Eclipse
- How to create Ant build file for existing Java project in Eclipse
- How to generate Javadoc in Eclipse
- How to create Java web project with Maven in Eclipse
- 25 Eclipse Shortcut Keys for Code Editing
- How to Add Copyright License Header for Java Source Files in Eclipse
- How to monitor HTTP requests and responses using TCP/IP Monitor in Eclipse
Comments