Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

How do you install libsrvg2 with the apt-get install command? I've tried the following:

root@ubuserver:~# apt-get install librsvg2-bin
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Couldn't find package librsvg2-bin

How would you install it?

share|improve this question
how about accepting an answer if one of them worked, or otherwise adding a comment to explain if you're still stuck. – poolie Mar 24 '11 at 10:28

3 Answers

If you've never run an package list update on the server, apt might not be able to see the package. The following should work:

apt-get update
apt-get install librsvg2-bin
share|improve this answer

You could try download it manually from: http://packages.ubuntu.com/maverick/librsvg2-bin

share|improve this answer
You could, but I wouldn't really recommend that. If it has not-yet-installed dependencies, and it probably does, he'll need to install them all manually. Better to work out why it's not working. – poolie Mar 24 '11 at 10:27

Did you try to find it if exists with this name or different name?

apt-cache search librsvg2-bin
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.