Reputation: 81
I am getting error on installation of libjpeg-turbo-progs such as
sudo apt-get install libjpeg-turbo-progs
and it gives output as
Reading package lists... Done Building dependency tree
Reading state information... Done E: Unable to locate package libjpeg-turbo-progs
I have also tried
sudo apt-get upgrade
Upvotes: 2
Views: 9369
Reputation: 2060
I'm guessing you need to install JPEGTran because of Yeoman. I have the same error on Ubuntu 11.04 server.
Changing the package name from libjpeg-turbo-progs
to libjpeg-progs
installed JPEGTran correctly:
sudo apt-get install libjpeg-progs
Upvotes: 3
Reputation: 1910
You should try to resync package index list by running:
sudo apt-get update
And then try to install jpedTran:
sudo apt-get install libjpeg-turbo-progs
Upvotes: 0