Hi,
I have been trying to run the following script on my system:-

Code:
#!/usr/bin/perl
#Load Net::FTP
use Net::FTP;

$ftp=Net::FTP->new("ftp://ftp.ncbi.nlm.nih.gov/gene/*",Debug=>0)
	or die "Cannot connect to some.host.name: $@";
$ftp->login("anonymous",'-anonymous@')
    or die "Cannot login ",$ftp->message;
$ftp->cwd("/pub")
	or die "Cannot change working directory", $ftp->message;
$ftp->get("that.file")
	or die "get failed",$ftp->message;
$ftp->quit;
and got the following error:-

Can't locate B/Bytecode.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 /usr/local/lib/site_perl .) at (eval 1) line 18.

Please suggest some way to install B:Bytecode package on my system any1.
Please do reply.
P. S. :- I am trying to download files through a ftp link through this script and I have ubuntu as my operating system.