Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试安装快门。我有Linux Mint 17.3并将其安装为:
Linux Mint 17.3
sudo apt-get install shutter
但是当我在安装后运行它时出现错误:
Can't locate Shutter/App/SimpleDialogs.pm in @INC
我想念什么?
该程序将其库放入/usr/share/perl5/. 因此,要使用它,您应该PERL5LIB为该文件夹设置 env 变量。在我的.bashrc我做:
/usr/share/perl5/
PERL5LIB
.bashrc
export PERL5LIB="/usr/share/perl5/:${PERL5LIB}"