Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a code

use Tie::File::AsHash;
tie %sets, 'Tie::File::AsHash', '.\\main\\old_names.txt',  split => '\+' or die "Problem trying to %hash: $!";

and I get the error:

Can't locate Tie/File/AsHash.pm in @INC <@INC contains: C:/strawberry/perl/site/lib C:/strawberry/perl/vendor/lib C:/strawberry/perl/lib .> at C:\Users\user\Desktop\test.pl line 97 (which is the second line I posted)

BEGIN failed--compilation aborted at line 97.
share|improve this question
1  
when you're new to a language, it's hard to know the terms to search them dear critics – Grigor Jun 13 '12 at 14:34

1 Answer

up vote 2 down vote accepted

That usually indicates that the module isn't installed. One normally installs a module as follows:

cpan Tie::File::AsHash
share|improve this answer
how would I install the module? – Grigor Jun 13 '12 at 4:52
@Grigor, Already added to answer :) – ikegami Jun 13 '12 at 4:52
This worked thanks! Can accept the answer in 6 minutes. – Grigor Jun 13 '12 at 4:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.