0

when I give this command

apt-get install build-essential autoconf automake libxmu-dev

it gives the following error

E: Package 'build-essential' has no installation candidate
E: Package 'autoconf' has no installation candidate
E: Package 'automake' has no installation candidate
E: Unable to locate package libxmu-dev
subodh007
  • 350
  • 1
  • 12
shabeer
  • 1
  • 2
  • 8
  • 1
    Include in your question the output of these four commands: 1) `lsb_release -sr`, 2) `sudo apt-get update`, 3) `apt-cache policy build-essential`, 4) `grep -r ^deb /etc/apt/sources.list*`. Please [edit] your question to do so and please use proper formatting. – gertvdijk Sep 15 '14 at 13:22

1 Answers1

1

Try to first enable the main repository:

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

And finally:

sudo apt-get install build-essential autoconf automake libxmu-dev
Sylvain Pineau
  • 61,564
  • 18
  • 149
  • 183