使用cpan装perl模块时,好像前面的make,make install都通过了,到最后的make test就总是报错。。这样有没有关系?模块装上了没有? 另:我怎么知道我装的模块装上了啊?? Test returned status 255 (wstat 65280, 0xff00) DIED. FAILED tests 1-14 Failed 14/14 tests, 0.00% okay Failed Test Stat Wstat Total Fail Failed List of Failed -------------------------------------------------------------...
by glady4me - Perl - 2004-03-24 21:37:05 阅读(1338) 回复(3)
各位老师,请教个问题,请问如何使用cpan中的module,是需要把cpan中的.pm文件先放到perl安装目录下的lib中编译,然后再在命令行中运行 perl makefile.pl语句么,请教各位老师,小弟初来乍到。
请教一下: 在sun4u sparc SUNW,Sun-Fire-480R下安装了CGI::Session。不是超级用户下安装的,使用了perl Makefile.PL LIB=/home/sdbadmin/perlModule 。
接下来,想运行下测试代码。
#!/usr/bin/perl -w
use lib '/home/sdbadmin/perlModule';
use CGI::Session;
my $session = new CGI::Session() or die CGI::Session->errstr;
print "test end***\n";
然而,结果确是:
Use of uninitialized value in concat...
我刚刚学习perl,想用cpan安装bioperl模块,为什么老是出错啊,这个错误倒是什么意思? 怎么解决? 谢谢大家阿! cpan> install Bundle::cpan cpan: Storable loaded ok Going to read /root/.cpan/sources/authors/01mailrc.txt.gz cpan: Compress::Zlib loaded ok Going to read /root/.cpan/sources/modules/02packages.details.txt.gz Warning: Your /root/.cpan/sources/modules/02packages.details.txt.gz does not contain...
公司的代理服务器需要ISA验证,我试了一下perl 的http代理模块,好像是不成功的,相信设置都是对的,另外rh9上的netscape好像也不支持这种验证,fedora4上的firefox是可以的。 不知道大家有没有什么想法,怎么解决?
在Windows下,有很多perl IDE可用,在Linux和Solaris下就好像没有了,有时调试perl程序时用perl很麻烦,探索了一下,emacs可以调试perl程序。 当然牛人可能不用IDE,我不是牛人,所以我还是要用IDE。 If you have perl installed on your computer, you may debug a perl script by simply typing "alt-x perldb" "perl -d myscript.pl". Once the command is entered, you will see 2 buffers in Emacs, the top buffer is the de...