Come hang with us on Discord and chat directly with the team!Discordtop-bar-close-icon

2024-09-17

How to Install Notepad++ on Linux Mint Latest

tutorials
img

Notepad++ is a well-loved text editor by developers for coding. It is also available for Linux Mint. This guide will walk you through installing Notepad++ on the latest version of Linux Mint.

Prerequisites

Ensure your Linux Mint is updated by running the following command in the terminal:

sudo apt-get update && sudo apt-get upgrade

Installation Steps

  1. Open the terminal on your Linux Mint system.
  2. Download the Notepad++ package from the official website using the following command:
    wget https://notepad-plus-plus.org/repository/7.x/7.9.5/npp.7.9.5.Installer.x64.deb
    Remember to verify the latest version on the Notepad++ website before using the command above.
  3. Navigate to the Downloads directory using the command:
    cd ~/Downloads
    If the file is in another directory, navigate accordingly.
  4. Install the Notepad++ package with the command:
    sudo dpkg -i npp.7.9.5.Installer.x64.deb
    Adjust the file name to match the downloaded version of Notepad++.
  5. Open Notepad++ from the applications menu or run the command:
    notepad-plus-plus
    You can now start using Notepad++ for coding.

Conclusion

This guide has shown you how to install Notepad++ on the latest Linux Mint. Known for its powerful features, Notepad++ is a preferred choice for developers.