CGI::Session 模块无法使用[pack from CPAN]

CGI::Session 模块无法使用[pack from CPAN]

请教一下: 在sun4u sparc SUNW,Sun-Fire-480R下安装了CGI::Session。不是超级用户下安装的,使用了perl Makefile.PL LIB=/home/sdbadmin/PerlModule 。
接下来,想运行下测试代码。
<code>
#!/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";

</code>

然而,结果确是:
Use of uninitialized value in concatenation (.) or string at /home/sdbadmin/PerlModule/CGI/Session.pm line 128.
Can't locate object method "generate_id" via package "CGI::Session::ID::" (perhaps you forgot to load "CGI::Session::ID::"?) at /home/sdbadmin/PerlModule/CGI/Session.pm line 74.

请帮忙分析一下,谢谢。

会不会是模块没有安装成功呢?
看来这个模块不是很普遍地被使用