How to install Notepad++ on Linux

Notepad++ is a very popular text editor that’s only built for Windows and doesn’t have official support for Linux systems. However, it’s now pretty easy to install Notepad++ on major Linux distros thanks to Snap packages.

Old methods for installing Notepad++ relied on using Wine for a compatibility layer and installing the program through Winetricks. That method still works, but the Snap package has Wine dependencies baked in, taking the fuss out of the whole process.

In this guide, we’ll take you through the steps of installing Notepad++ on a Linux system by using Snap. Not all major distros have native access to Snaps just yet, so we will also be covering how to enable them on an assortment of popular distributions.

In this tutorial you will learn:

  • How to enable Snap support on major distros
  • How to install Notepad++ Snap package

Notepad++ on a Linux system

Notepad++ on a Linux system

Software Requirements and Linux Command Line Conventions
Category Requirements, Conventions or Software Version Used
System Any Linux disto
Software Snap, Notepad++
Other Privileged access to your Linux system as root or via the sudo command.
Conventions # – requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command
$ – requires given linux commands to be executed as a regular non-privileged user

Enable Snap support

Snap packages are a new feature in the Linux ecosystem, and some distros have yet to include native support for them. Newer versions of Ubuntu should already have Snap enabled, as Canonical developed the feature and first introduced it on their own distribution. Here’s how to enable the Snap package manager on other distros:

Enable Snap support on Debian and Linux Mint:

$ sudo apt install snapd


Enable Snap support on Fedora:

$ sudo dnf install snapd

Enable Snap support on CentOS:

$ sudo yum install epel-release
$ sudo yum install snapd
$ sudo systemctl enable --now snapd.socket

Enable Snap support on Arch Linux:

$ git clone https://aur.archlinux.org/snapd.git
$ cd snapd
$ makepkg -si
$ sudo systemctl enable --now snapd.socket

Enable Snap support on Manjaro:

$ sudo pacman -S snapd
$ sudo systemctl enable --now snapd.socket

The official Snap documentation also recommends rebooting your system after successful installation of Snap. This will ensure that Snap’s paths are updated correctly. Once you’re done installing Snap and have rebooted, join us again for the next section about installing Notepad++.

Install Notepad++ Snap package

Open a terminal on your system and enter the following command to install Notepad++. The command and package name should be the same on any distro, as one of Snap’s aims is to be universal.

$ sudo snap install notepad-plus-plus


Give Snap a few minutes or so and it will let you know when Notepad++ has been installed.

Successful installation of Notepad++ via Snap

Successful installation of Notepad++ via Snap

Search for Notepad++ in your desktop environment’s app launcher to start using the newly installed text editor.

Open Notepad++ from the app launcher or from terminal

Open Notepad++ from the app launcher or from terminal

Alternatively, you can type the following command in terminal to launch the app:

$ notepad-plus-plus

That’s all there is to it. Now you can use Notepad++ on Linux to write documents and develop code.

Notepad++ on a Linux system

Notepad++ on a Linux system

Conclusion

In this guide, we saw how to install Notepad++ on major Linux distributions. We also learned how to enable Snap package manager to facilitate the installation.

Installing unsupported applications on a Linux system will always be a bit hacky, but using the Snap package manager to install Notepad++ is definitely the easiest way to get it up and running. While it still relies on Wine, these dependencies are under the hood and invisible to the user, which makes your life a little easier.



Comments and Discussions
Linux Forum