averagehat / gcap

Automatically exported from code.google.com/p/gcap
0 stars 0 forks source link

can't download captions - error with Getopt/ArgvFile.pm #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. download source code
2. try to run gcap from pre-compiled binary or by make / make install 
instructions
3. gcap 0QRO3gKj3qw

What is the expected output? What do you see instead?

Can't locate Getopt/ArgvFile.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 /usr/local/bin/gcap line 32.

What version of the product are you using? On what operating system?

gcap 0.0.4 from source download ( git repository was down ) 
ubuntu 10.04, perl v5.10.1 

Please provide any additional information below.

Original issue reported on code.google.com by Benjamin...@gmail.com on 22 Nov 2010 at 1:57

GoogleCodeExporter commented 9 years ago
Looks like you have not installed the prerequisite modules listed in the 
Makefile.PL:

{{{
'Getopt::ArgvFile'  => 1.11, # <http://search.cpan.org/perldoc?Getopt::ArgvFile>
'XML::DOM'          => 1.44, # <http://search.cpan.org/perldoc?XML::DOM>
}}}

I think the buntu equivalents are:
  * libgetopt-argvfile-perl
  * libxml-dom-perl

Make sure you have installed those first.

Original comment by legatvs on 23 Nov 2010 at 2:10

GoogleCodeExporter commented 9 years ago
Yep, apt-get install libgetopt-argvfile-perl did the trick. Sorry for the n00b 
question - I'm not too well versed in Perl :) Thanks!

Original comment by Benjamin...@gmail.com on 23 Nov 2010 at 4:58