How to Install Notepad++ in Ubuntu 22.04

Notepad++ is a text and source code editor for use with Microsoft Windows. It supports tabbed editing, which allows working with multiple open files in a single window. The product’s name comes from the C postfix increment operator. Notepad++ is distributed as free software.

Notepad++ is a versatile and powerful source code editor that also serves as an excellent replacement for the default Notepad text editor in Windows. Notepad++ is a versatile and powerful source code editor that also serves as an excellent replacement for the default Notepad text editor in Windows.

In this tutorial, i am going to show you how to install and uninstall notepad++in linux ubuntu 22.04 using terminal or command prompt.

How to Install Notepad++ in Ubuntu 22.04

Follow the below given steps to nstall and uninstall notepad++in linux ubuntu 22.04 using terminal or command prompt:

  • Step 1 – Update System Packages
  • Step 2 – Install Notepad++
  • Step 3 – Launch the App
  • Step 4 – Update the Notepad++ App
  • Step 5 – Uninstall Notepad++ on Ubuntu 22.04

Step 1 – Update System Packages

Now, start terminal or command prompt and run the following command on command line to update system packages:

sudo apt update && sudo apt upgrade -y

Step 2 – Install Notepad++

Run the following command on command line to install notepad ++ with snap:

sudo snap install snapd
sudo snap install core
sudo snap install notepad-plus-plus

Step 3 – Launch the App

Once the notepad ++ installation has been done, you need to launch notepad ++ app. So run the following command on command line to launch notepad++ app:

notepad-plus-plus

Step 4 – Update the Notepad++ App

For update the notepad ++ app new features, so run the following command on command prompt:

udo snap refresh

Step 5 – Uninstall Notepad++ on Ubuntu 22.04

If you need to uninstall or remove notepad++ on the ubuntu 22.04 system, so run the following command to uninstall or remove notepad++ on ubuntu 22.04:

sudo snap remove notepad-plus-plus

Conclusion

Through this tutorial, i have shown to you how to install and uninstall notepad++in linux ubuntu 22.04 using a terminal or command line.

More Tutorials

Leave a Comment