-3

Just trying to install flameshot, lightshot doesnt work

And I get this:

sudo apt install flameshot

Reading package list ... Done 
Creating dependency tree
Reading status information ... Done 
E: The flameshot package could not be located

Can someone please explain to me how to figure out this issue .

mchid
  • 43,546
  • 8
  • 97
  • 150

1 Answers1

2

In order to install flameshot on Ubuntu 18.04 or newer, you need to have the Universe repository enabled.

Run the following commands to enable the Universe repository:

sudo add-apt-repository universe
sudo apt update

Now, install flameshot:

sudo apt install flameshot

You can find information about which repository provides a package and the availability of packages in different distro versions by visiting packages.ubuntu.com

mchid
  • 43,546
  • 8
  • 97
  • 150