I have a script I run on erach new machine I own, that installs somethings I need.
For some reason, on a dell Inspiron 3542 with Ubuntu 14.04, the following fails:
$ sudo apt-get install libamd2.2.0 libumfpack5.4.0 libatlas-sse2-dev
with the errors:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libatlas-sse2-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Unable to locate package libamd2.2.0
E: Couldn't find any package by regex 'libamd2.2.0'
E: Unable to locate package libumfpack5.4.0
E: Couldn't find any package by regex 'libumfpack5.4.0'
E: Package 'libatlas-sse2-dev' has no installation candidate
BTW,I did try sudo apt-get update
first.
With other computers this always worked for me before. How can I fix that?
sudo apt-get install libamd
, if you hit tab, you should see what packages you can install. – saiarcot895 Aug 16 '14 at 12:10