Can't install libpng-dev and libtiff5-devCan't install software from Software CenterApt-get failed to fetch from Ubuntu server with error code 404“Failed to fetch” error when installing Eclipse!Issues opening everythingapt-get update error ubuntu 12.04 to version 14Unmet dependencies errorCan't install libpng-dev
Energy cost of C−N rotation in hydroxamate group
What is the process of going from machine code to electrically controlling individual transistors?
Why is it “Cat in the Hat”?
Vintage vs modern B&W photography techniques differ in color luminance - what's going on here?
How tall would a rainforest need to be to make it completely dark at ground level
Function to calculate "Nd6 take highest 2, sort descending" probabilities in AnyDice
1 kHz clock over long wire
Languages which changed their writing direction
Are these special (one production) Context-Free Grammars always unambiguous?
Replacing 2-prong outlets in basement - existing wiring has two hot wires, one neutral?
CircuiTikZ: How to change the node options of labels and annotations?
Drawing a Wickselian triangle graph in Latex
Training a model sample by sample
Interpret numbers very literally
Forcing and new ordinals
Renew British passport which includes visa for return to Australia
Drying clothes: windy but cold outside vs warm(ish) inside?
First attempt: Python Rock Paper Scissors
Is a vector space naturally isomorphic to its dual?
Can I use Clonezilla for backup without destroing what's already on the destination drive?
What were the prevailing real-life cultural connotations of "clones" in 1975 (Star Wars' 3rd draft)?
A professor commented that my research is too simple as compared to my colleagues. What does that mean about my future prospects?
Why don't the crew of Moya know the location of their homeworlds?
Xrite Colorchecker color specifications and 18% reflectance gray card
Can't install libpng-dev and libtiff5-dev
Can't install software from Software CenterApt-get failed to fetch from Ubuntu server with error code 404“Failed to fetch” error when installing Eclipse!Issues opening everythingapt-get update error ubuntu 12.04 to version 14Unmet dependencies errorCan't install libpng-dev
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I'm trying to work with tesseract-ocr to read some text in a photo in a program but when I try to follow their instructions on how to install I keep getting errors trying to run
sudo apt-get install libpng-dev
and
sudo apt-get install libtiff5-dev
They both do something similar:
$ sudo apt install libpng-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpng-tools
The following NEW packages will be installed:
libpng-dev libpng-tools
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 203 kB of archives.
After this operation, 703 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Ign:1 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.1
Ign:2 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.1
Err:1 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.1
404 Not Found [IP: 2001:67c:1360:8001::17 80]
Err:2 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.1
404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng-dev_1.6.34-1ubuntu0.18.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng-tools_1.6.34-1ubuntu0.18.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
When I try to follow the links it looks like it's just looking for the wrong versions. How can I make it look for the correct ones?
apt package-management
add a comment
|
I'm trying to work with tesseract-ocr to read some text in a photo in a program but when I try to follow their instructions on how to install I keep getting errors trying to run
sudo apt-get install libpng-dev
and
sudo apt-get install libtiff5-dev
They both do something similar:
$ sudo apt install libpng-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpng-tools
The following NEW packages will be installed:
libpng-dev libpng-tools
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 203 kB of archives.
After this operation, 703 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Ign:1 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.1
Ign:2 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.1
Err:1 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.1
404 Not Found [IP: 2001:67c:1360:8001::17 80]
Err:2 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.1
404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng-dev_1.6.34-1ubuntu0.18.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng-tools_1.6.34-1ubuntu0.18.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
When I try to follow the links it looks like it's just looking for the wrong versions. How can I make it look for the correct ones?
apt package-management
Have yousudo apt updateto update your machine's software repositories lists (ie. list of software packages & versions available)
– guiverc
Jul 14 at 4:11
That fixed it. If you make an answer Ill mark it.
– Chris
Jul 14 at 4:29
add a comment
|
I'm trying to work with tesseract-ocr to read some text in a photo in a program but when I try to follow their instructions on how to install I keep getting errors trying to run
sudo apt-get install libpng-dev
and
sudo apt-get install libtiff5-dev
They both do something similar:
$ sudo apt install libpng-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpng-tools
The following NEW packages will be installed:
libpng-dev libpng-tools
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 203 kB of archives.
After this operation, 703 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Ign:1 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.1
Ign:2 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.1
Err:1 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.1
404 Not Found [IP: 2001:67c:1360:8001::17 80]
Err:2 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.1
404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng-dev_1.6.34-1ubuntu0.18.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng-tools_1.6.34-1ubuntu0.18.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
When I try to follow the links it looks like it's just looking for the wrong versions. How can I make it look for the correct ones?
apt package-management
I'm trying to work with tesseract-ocr to read some text in a photo in a program but when I try to follow their instructions on how to install I keep getting errors trying to run
sudo apt-get install libpng-dev
and
sudo apt-get install libtiff5-dev
They both do something similar:
$ sudo apt install libpng-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpng-tools
The following NEW packages will be installed:
libpng-dev libpng-tools
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 203 kB of archives.
After this operation, 703 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Ign:1 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.1
Ign:2 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.1
Err:1 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.1
404 Not Found [IP: 2001:67c:1360:8001::17 80]
Err:2 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.1
404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng-dev_1.6.34-1ubuntu0.18.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng-tools_1.6.34-1ubuntu0.18.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1360:8001::17 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
When I try to follow the links it looks like it's just looking for the wrong versions. How can I make it look for the correct ones?
apt package-management
apt package-management
edited Jul 14 at 6:06
Kulfy
8,47311 gold badges34 silver badges60 bronze badges
8,47311 gold badges34 silver badges60 bronze badges
asked Jul 14 at 3:50
ChrisChris
1084 bronze badges
1084 bronze badges
Have yousudo apt updateto update your machine's software repositories lists (ie. list of software packages & versions available)
– guiverc
Jul 14 at 4:11
That fixed it. If you make an answer Ill mark it.
– Chris
Jul 14 at 4:29
add a comment
|
Have yousudo apt updateto update your machine's software repositories lists (ie. list of software packages & versions available)
– guiverc
Jul 14 at 4:11
That fixed it. If you make an answer Ill mark it.
– Chris
Jul 14 at 4:29
Have you
sudo apt update to update your machine's software repositories lists (ie. list of software packages & versions available)– guiverc
Jul 14 at 4:11
Have you
sudo apt update to update your machine's software repositories lists (ie. list of software packages & versions available)– guiverc
Jul 14 at 4:11
That fixed it. If you make an answer Ill mark it.
– Chris
Jul 14 at 4:29
That fixed it. If you make an answer Ill mark it.
– Chris
Jul 14 at 4:29
add a comment
|
1 Answer
1
active
oldest
votes
You mention
it looks like it's just looking for the wrong versions
so update your machine's software repository lists with the command
sudo apt update
This will update the lists of software packages available (including versions) available for sources listed for your machine (sources found in /etc/apt/sources.list & sources.list.d/)
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1158141%2fcant-install-libpng-dev-and-libtiff5-dev%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You mention
it looks like it's just looking for the wrong versions
so update your machine's software repository lists with the command
sudo apt update
This will update the lists of software packages available (including versions) available for sources listed for your machine (sources found in /etc/apt/sources.list & sources.list.d/)
add a comment
|
You mention
it looks like it's just looking for the wrong versions
so update your machine's software repository lists with the command
sudo apt update
This will update the lists of software packages available (including versions) available for sources listed for your machine (sources found in /etc/apt/sources.list & sources.list.d/)
add a comment
|
You mention
it looks like it's just looking for the wrong versions
so update your machine's software repository lists with the command
sudo apt update
This will update the lists of software packages available (including versions) available for sources listed for your machine (sources found in /etc/apt/sources.list & sources.list.d/)
You mention
it looks like it's just looking for the wrong versions
so update your machine's software repository lists with the command
sudo apt update
This will update the lists of software packages available (including versions) available for sources listed for your machine (sources found in /etc/apt/sources.list & sources.list.d/)
answered Jul 14 at 4:33
guivercguiverc
8,6202 gold badges17 silver badges28 bronze badges
8,6202 gold badges17 silver badges28 bronze badges
add a comment
|
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1158141%2fcant-install-libpng-dev-and-libtiff5-dev%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you
sudo apt updateto update your machine's software repositories lists (ie. list of software packages & versions available)– guiverc
Jul 14 at 4:11
That fixed it. If you make an answer Ill mark it.
– Chris
Jul 14 at 4:29