0

When I try to install any package through the command line, I get an error. Can anyone help me on this?

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

and here's the snapshot. snap1

rusty
  • 16,917

1 Answers1

1

To install fpc you should have the Universe repository enabled. From command line, you can do this and then install the application as shown below:

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
sudo apt-get update
sudo apt-get install fpc

Source How do I enable the “Universe” repository from the command line?

Synaptic Package Manager is a good graphical package manager, if you might want to give it a try!

Federico
  • 3
  • 2
rusty
  • 16,917