2

I'm trying to install conky-manager on Lubuntu 18.04 using the following commands:

sudo add-apt-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install conky-manager
sudo apt-get install selene

However, this does not seem to work on Lubuntu 18.04. When I run:

sudo apt-get install conky-manager

I get the following output:

Reading package lists...
Done Building dependency tree
Reading state information...
Done E: Unable to locate package conky-manager  

How to install it?

bayou
  • 61

1 Answers1

1

The package can't be located, because you are adding the wrong ppa for your OS version to install conky-manager.

conky-manager in ppa:teejee2008/ppa is only maintained up to and including Ubuntu 16.04, so most of the tutorials that can be found around the internet are outdated as of now.

From Ubuntu 17.10 onwards (so also for Lubuntu 17.10 onwards), you have to use ppa:tomtomtom/conky-manager instead. But as always, beware if you trust an unknown ppa.

Wanderer
  • 355