How to uninstall app in linux ubuntu terminal
- how to uninstall in linux terminal
- how to delete in linux terminal
- how to uninstall anaconda in linux terminal
- how to uninstall python in linux terminal
How to uninstall apps on linux mint
How to uninstall in terminal mac.
How to uninstall packages from Linux?
In this article, we will learn to uninstall the different types of packages from Linux.
Let’s understand the uninstalling process through some examples:
Example 1: Uninstall a package using apt-get
In this example, we will remove GIMP, a graphics software that was installed with the help of apt-get.
Step 1: To list all the apt-get packages, enter the following command in Terminal:
dpkg --listAs you can see, gimp is installed in the output
Step 2: Now run the following command to uninstall any package.
Here the package is GIMP.
sudo apt-get --purge remove gimpThe output is as follows:
Example 2: Uninstall the SNAP package
Snap packages are very popular, and in this example, we again have GIMP as a snap package to uninstall.
Step 1: Run the following command to check the exact name
snap listThe gimp software is highlighted in the output
Step 2: Run the following command to remove it.
sudo snap remove gimpThe output is as follows: