Library is missing when run 'shutter'

80 views Asked by At

I am trying to install shutter. I have Linux Mint 17.3 and install it as:

sudo apt-get install shutter

But when I run it after installation I get error:

Can't locate Shutter/App/SimpleDialogs.pm in @INC

What do I miss?

1

There are 1 answers

3
Eugen Konkov On

This programm put its library into /usr/share/perl5/. So to use it you should setup PERL5LIB env variable to that folder. In my .bashrc I do:

export PERL5LIB="/usr/share/perl5/:${PERL5LIB}"