0

I am currently running 12.04 and I can't get Jupiter to install on my computer.

These are the commands I am running to install it:

sudo add-apt-repository ppa:webupd8team/jupiter
sudo apt-get update
sudo apt-get install jupiter

This is the error I get after updating:

W: Failed to fetch http://ppa.launchpad.net/webupd8team/jupiter/ubuntu/dists/saucy/main/binary-amd64/Packages  404  Not Found

and finally after install jupiter, I get this error:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package jupiter

Any ideas on how I can fix this issue? Or can anyone point me in the right direction?

Stormvirux
  • 4,536
Sarah
  • 189

1 Answers1

1

First let's remove the old added repository:

sudo apt-add-repository --remove ppa:webupd8team/jupiter

Now add the correct version:

echo "deb http://ppa.launchpad.net/webupd8team/jupiter/ubuntu precise main " | sudo tee -a /etc/apt/sources.list

echo "deb-src http://ppa.launchpad.net/webupd8team/jupiter/ubuntu precise main" | sudo tee -a /etc/apt/sources.list

Now update:

sudo apt-get update

Its time to install

sudo apt-get install jupiter
Maythux
  • 87,123