Perl Smart Comments

I'm trying to run a program called xSwipe but I keep getting this error telling me I don't have Smart Comments installed:

"Can't locate Smart/Comments.pm in @INC (you may need to install the Smart::Comments module) (@INC contains: /etc/perl /usr/local/lib/perl/5.18.2 /usr/local/share/perl/5.18.2 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.18 /usr/share/perl/5.18 /usr/local/lib/site_perl .) at /home/jackson/xSwipe-master/xSwipe.pl line 15."

How would I go about installing them? I haven't found anything online for this.

Thanks!

$ sudo cpan -i Smart::Comments

The first time you run cpan, it'll ask you to configure it. Unless you know differently most likely you just want the defaults.

That worked thanks!