h**p 发帖数: 14 | 1 Hi, I have a simple code I got from CPAN page.
#!/opt/perl-5.8.8/bin/perl -w
use utf8;
use Text::Unidecode;
print unidecode(
"\x{5317}\x{4EB0}\n"
);
When I run it, I got error message:
"Can't locate Text/Unidecode.pm in @INC (@INC contains: /usr/lib/perl5/site_
perl /opt/perl-5.8.8/lib/5.8.8/x86_64-linux /...."
What's wrong here? The CPAN page said this module works with perl 5.0
Thanks for help!! | t****t 发帖数: 6806 | 2 did you install the module? how did you install the module?
site_
【在 h**p 的大作中提到】 : Hi, I have a simple code I got from CPAN page. : #!/opt/perl-5.8.8/bin/perl -w : use utf8; : use Text::Unidecode; : print unidecode( : "\x{5317}\x{4EB0}\n" : ); : When I run it, I got error message: : "Can't locate Text/Unidecode.pm in @INC (@INC contains: /usr/lib/perl5/site_ : perl /opt/perl-5.8.8/lib/5.8.8/x86_64-linux /...."
|
|