1

I want to install Shutter, because I took a screenshot with the PrintScreen button, but when I try to install Shutter from the software center or from the terminal using the shutter ppa, it says that I need to install libxml-simple-perl. When I try to install that, it throws me another dependency, then again, then again. Why I can't install Shutter? Even Synaptic won't install it. Is there any fix for it? Are there any alternatives for Shutter?

Melebius
  • 11,121
  • 8
  • 50
  • 77
Tibi
  • 65
  • 1
  • 3
  • 8
  • Also 'sudo apt-get -f install' don't do nothing – Tibi Jan 08 '13 at 11:49
  • Since you are having problem with unmet dependencies; have a look at this question: [How do I resolve unmet dependencies?](http://askubuntu.com/questions/140246/how-do-i-resolve-unmet-dependencies). Try the solutions listed there :) – Aditya Jan 08 '13 at 13:01
  • Hi Tibi. Could you please try running `sudo apt-get -y install shutter` from a terminal and paste the output inside your question? Thanks! – Andrea Corbellini Jan 08 '13 at 15:56

3 Answers3

1

Try adding the -y option to the install command. This tells apt-get to automatically install everything it needs. Assuming the dependencies are available of course.

sudo apt-get -y install shutter
user119736
  • 151
  • 1
  • 7
0

Try this:

sudo add-apt-repository ppa:shutter/ppa
sudo apt-get update
sudo apt-get install shutter
VRU
  • 1,137
  • 2
  • 16
  • 33
  • That's what I did and didn't work... :/ – Tibi Jan 08 '13 at 12:06
  • I just tryed the same on my Ubuntu 12.04 by giving the command **sudo apt-get install shutter** and it installed perfectly – VRU Jan 08 '13 at 12:24
  • @Tibi just to make it sure, you are installing this package in online mode, right? – VRU Jan 08 '13 at 12:40
0

I don't know how to install Shutter, BUT you can install other screenshot taking applications, like this one which called Cleopix.

To install Cleopix (it is paid)

You can simply click this button

enter image description here

Also take look at this link


And ther is other way without using PrtScreen button. Type in terminal gnome-screenshot. You can also make launcher for that, and take screenshot via launching it. For that just copy this and paste into file called screenshot.desktop
[Desktop Entry]
Name=Screenshot
Comment=Save images of your screen or individual windows
Exec=gnome-screenshot --interactive
Terminal=false
Type=Application
Icon=applets-screenshooter
StartupNotify=true
Categories=GTK;GNOME;Utility;
NotShowIn=KDE;
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=gnome-utils
X-GNOME-Bugzilla-Component=screenshot
Actions=Screen;Window;Area
X-Ubuntu-Gettext-Domain=gnome-screenshot

[Desktop Action Screen]
Name=Take a Screenshot of the Whole Screen
Exec=gnome-screenshot
OnlyShowIn=Unity;

[Desktop Action Window]
Name=Take a Screenshot of the Current Window
Exec=gnome-screenshot -w
OnlyShowIn=Unity;

[Desktop Action Area]
Name=Take a Screenshot of a Selected Area
Exec=gnome-screenshot -a
OnlyShowIn=Unity;


And after that make that file executable, using chmod +x screenshot.desktop. And it is ready for use! Just add it to your unity launcher and that's all:

That's how it will look like!

hingev
  • 6,546
  • 5
  • 38
  • 60