Close

How to Uninstall Apps(Packages) on Raspberry Pi

rjrobotics007rjrobotics007 wrote 05/20/2020 at 14:22 • 3 min read • Like

You might be having a raspberry pi, as you’re here. There are times where we want to remove some apps or packages we installed and don’t use anymore. In this tutorial I will be showing, how you can remove the packages/ apps from your raspberry pi.

There are many curious people/geeks who try and install packages and remove them after sometime. I do the same all the time. I like to test many apps and packages that might help me in my day to day work.

More to read on Raspberry Pi:

There are multiple methods to remove packages, but I will be showing you the easiest ways to remove packages/apps.

The methods are:


Method 1 :  Using Synaptic package manager (Easy way)

Synaptic package manager is like the programs and features option in the control panel of windows. It works in similar fashion and shows installed programs. You can select multiple programs to uninstall at the same time, which windows programs and features lacks in.

1.0 Synaptic package manager

There are a lot of extra functionality, sorting filters,categories and much more in the app. I think it is a must have package/app for your raspberry pi. Helps manage things. If you have downloaded raspbian buster or any other version with recommended software you can remove all the stuff you don’t need. Like I don’t code on java so I have removed the IDE of JAVA.

If you want to use different browser than chromium, suppose if you are a firefox fan like me. You can remove chromium easily. The app is really worth the try I would say.

How to install it:

In order to install it, you will need to write the below code in the terminal of raspbian and it will soon begin to install, it will ask you for confirmation, Y/N. Press Y and it will get installed.

sudo apt-get install synaptic

Once the installation is done you can open the app and select the apps which you wanna uninstall. Just make sure you don’t remove any system packages. So this was the first and easy method to remove packages/apps.

Now I will tell you guys how you can remove packages directly without any apps

Method 2: Using Terminal

1.1 Terminal

In this we will use a command to remove app/package directly from the terminal, without using any GUI package/app.

This method is also easy but if you write the name of the package wrong, it doesn’t work, so it’s a bit sensitive.

Below is the command to remove package

sudo apt-get --purge remove <package>

above <package> is the name of the package you want to uninstall. Suppose you want to remove the first package of synaptic you installed and you want to manually uninstall packages one by one by this method you can type the below command.

sudo apt-get --purge remove synaptic

To explore more original Raspberry pi ,Kits and accessories Click here

To explore  Raspberry Pi 4 Model-B with 4 GB RAM Click Here

This  is based on an article How to Uninstall Apps(Packages) on Raspberry Pi - By Apurva Singh Visit this article to know more about  it.

Like

Discussions