S
sravi
I need the perl module Digest::Nilsimsa. Since I don't have root
permissions, I have to install this locally. I used the following
commands
perl Makefile.PL PREFIX=/home/sravi/perl
make
make test
make install
All the commands where executed successfully, but the following program
is giving the error
"Can't locate Digest/Nilsimsa.pm in @INC (@INC contains:
/home/sravi/perl /home/sravi/perl
/usr/local/lib/perl5/sun4-solaris/5.00404 /usr/local/lib/perl5
/usr/local/lib/perl5/site_perl/sun4-solaris
/usr/local/lib/perl5/site_perl /usr/local/lib/perl5/sun4-solaris .) at
../tmp.pl line 5.
BEGIN failed--compilation aborted at ./tmp.pl line 5."
#!/usr/local/bin/perl -w
use lib "/home/sravi/perl";
use Digest::Nilsimsa;
my $nils = Digest::Nilsimsa;
my $digest = $nils->text2digest("hi");
print $digest, "\n";
Does anyone know what is the problem with this?
permissions, I have to install this locally. I used the following
commands
perl Makefile.PL PREFIX=/home/sravi/perl
make
make test
make install
All the commands where executed successfully, but the following program
is giving the error
"Can't locate Digest/Nilsimsa.pm in @INC (@INC contains:
/home/sravi/perl /home/sravi/perl
/usr/local/lib/perl5/sun4-solaris/5.00404 /usr/local/lib/perl5
/usr/local/lib/perl5/site_perl/sun4-solaris
/usr/local/lib/perl5/site_perl /usr/local/lib/perl5/sun4-solaris .) at
../tmp.pl line 5.
BEGIN failed--compilation aborted at ./tmp.pl line 5."
#!/usr/local/bin/perl -w
use lib "/home/sravi/perl";
use Digest::Nilsimsa;
my $nils = Digest::Nilsimsa;
my $digest = $nils->text2digest("hi");
print $digest, "\n";
Does anyone know what is the problem with this?