简体   繁体   English

运行“快门”时缺少库

[英]Library is missing when run 'shutter'

I am trying to install shutter .我正在尝试安装百叶窗 I have Linux Mint 17.3 and install it as:我有Linux Mint 17.3并将其安装为:

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?我想念什么?

This programm put its library into /usr/share/perl5/ .该程序将其库放入/usr/share/perl5/ So to use it you should setup PERL5LIB env variable to that folder.因此,要使用它,您应该将PERL5LIB变量设置到该文件夹​​。 In my .bashrc I do:在我的.bashrc我做:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从crontab运行时,Perl中的Carp库在哪里打印日志 - Where does, Carp library in Perl, print logs when run from crontab 如何运行“ Build installdeps”以安装缺少的先决条件 - how to Run 'Build installdeps' to install missing prerequisites 尝试使用库Perl时在库名称中使用变量 - Using a variable in a library name when trying to use a library perl 禁用system()时运行perl - Run perl when system() is disabled 如何修复此Perl库缺少的错误:“在@INC中找不到auto / threads / error.al”? - How to fix this Perl Library Missing Error: “Can't locate auto/threads/error.al in @INC”? 在Catalyst中使用Plack :: Middleware兼容的异常时,日志输出丢失 - Log output missing when using Plack::Middleware compatible exceptions in Catalyst 从命令行运行Talend perl作业时丢失文件 - Missing files when running a Talend perl job from the command line 在perl / cgi文件中运行系统命令时缺少输出 - Missing output when running system command in perl/cgi file 为什么是 <gd:when> 这个Google日历xml资讯提供中缺少? - Why is <gd:when> missing from this google calendar xml feed? 比较 perl 中的两个列表时找到额外的、缺失的、无效的字符串 - find extra, missing, invalid strings when comparing two lists in perl
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM