Installing and Uninstalling Notepad++ on Ubuntu
Note to self: Look into VIM and notepadqq or other alternates - shouldnt have to use a windows application on ubuntu.
Just a set of terminal commands for installing:
#The following two lines just ensure latest packages
sudo apt update
sudo apt upgrade
#The following two lines are to be run only install notepad doesn't work
sudo snap install snapd
sudo snap install core
#The only line doing whats need - the rest are pre-reqs
sudo snap install notepad-plus-plus
Why notepad ++ :
It is a good software for copy pasting information, and can read format various format text - making it easier to read like json and html. So, I am using it as a notes recorder and to read files whose parsers I may not have installed yet.
Just a set of terminal commands for un-installing:
sudo snap abort --last auto-refresh
sudo snap disable notepad-plus-plus
sudo snap remove notepad-plus-plus
Comments
Post a Comment