For most install I am using the Discover app for installing and managing apps. But in a few cases I select to use either Snap or Flatpak or AppImage, and then this comes to use.
I think using command line can be a nice way to install and manage Snap and Flatpak packages.
Some commands for Snap:
snap list
snap find gimp
snap search gimp
snap install gimp
Some commands for Flatpak:
Install flatpak:
sudo apt install flatpak
Add flathub repository:
(see documentation)
Install app Krita:
flatpak install flathub org.kde.krita
List installed flatpak apps:
flatpak list
Update the app Gimp:
sudo flatpak update org.gimp.GIMP
Apps available can also be found in the web at Snapcraft and Flatpak sites.
I think using command line can be a nice way to install and manage Snap and Flatpak packages.
Some commands for Snap:
snap list
snap find gimp
snap search gimp
snap install gimp
Some commands for Flatpak:
Install flatpak:
sudo apt install flatpak
Add flathub repository:
(see documentation)
Install app Krita:
flatpak install flathub org.kde.krita
List installed flatpak apps:
flatpak list
Update the app Gimp:
sudo flatpak update org.gimp.GIMP
Apps available can also be found in the web at Snapcraft and Flatpak sites.
Comment