I'm very new to programming so I apologise if I've missed something obvious.

I'm following the directions at https://github.com/keeth/Net-OAuth/blob/master/README and got the following error:

Can't locate MIME/Types.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/share/perl/5.10.1/Dancer/MIME.pm line 7.

It sounds like there's an error in the perl module Dancer/MIME.pm? If so I don't know how I could ever debug that.

Addendum: more error messages.

$ ./mayor-emanuel.pl Can't locate HTTP/Body.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/share/perl/5.10.1/Dancer/Request.pm line 12. BEGIN failed--compilation aborted at 
/usr/local/share/perl/5.10.1/Dancer/Request.pm line 12. Compilation failed in require at 
/usr/local/share/perl/5.10.1/Dancer/Route.pm line 11. BEGIN failed--compilation aborted at 
/usr/local/share/perl/5.10.1/Dancer/Route.pm line 11. Compilation failed in require at
/usr/local/share/perl/5.10.1/Dancer/Route/Registry.pm line 5. BEGIN failed--compilation 
aborted at /usr/local/share/perl/5.10.1/Dancer/Route/Registry.pm line 5. Compilation failed 
in require at /usr/local/.../Dancer/App.pm line 10. BEGIN failed--compilation aborted at 
/usr/local/share/perl/5.10.1/Dancer/App.pm line 10. Compilation failed in require at 
/usr/local/share/.../Dancer.pm line 13. BEGIN failed--compilation aborted at 
/usr/local/share/perl/5.10.1/Dancer.pm line 13. Compilation failed in require at ./mayor-
emanuel.pl line 5. BEGIN failed--compilation aborted at ./mayor-emanuel.pl line

By the way I use Ubuntu 10.04.

Question: what does this mean and what should I do about it?

link|improve this question

53% accept rate
1  
@daxim Thank you! I'll take a look at that. – Lao Tzu Mar 14 '11 at 23:06
feedback

2 Answers

Either the MIME::Types module is not installed on your system or it's not in your path. If it's the former, then install it (you can do this with cpan). If it is present but not in a normal location (read: one of the directories listed in the "@INC contains:" error), you can add that directory by adding

use lib '/path/to/library';

ahead of the use MIME::Types; statement.

link|improve this answer
I did $cpan> install MIME::Types as below in response to @Ted Hopp. I didn't put anything in a weird location but I added my current directory with use lib '/home/me/project/' just in case. Still getting the error message in comments of the OP. – Lao Tzu Mar 10 '11 at 1:59
Thanks also for responding so quickly! – Lao Tzu Mar 10 '11 at 2:00
feedback

It sounds like you need to install the MIME::Types module.

link|improve this answer
cpan[35]> install MIME::Types Running install for module 'MIME::Types' Running make for M/MA/MARKOV/MIME-Types-1.31.tar.gz Has already been unwrapped into directory Has already been made Running make test Has already been tested successfully Running make install Already tried without success – Lao Tzu Mar 10 '11 at 1:50
@Ted Hopp Thanks for the fast response! But when I try to install MIME::Types I got the above (lots of [...] left out) – Lao Tzu Mar 10 '11 at 1:51
1  
If make install failed, you may not have permission, especially if you are installing in the system perl as a regular user. You can tell cpan to run make install as 'sudo make install' and it will prompt you for a password. In cpan type 'o conf make_install_make_command = 'sudo make install'. – Jim Brandt Mar 10 '11 at 1:55
Thanks @Jim Brandt. I did cpan> o conf make_install_make_command='sudo make install' earlier tonight and then did cpan> clean MIME::Types as well as cpan> clean Dancer. still getting the error in OP comments above. – Lao Tzu Mar 10 '11 at 2:01
1  
Did you do them in the same cpan session? If not, that o conf configuration setting will be lost. o conf commit will save it for good. You probably also want to do o conf mbuild_install_build_command = 'sudo ./Build' to handle the other style of installing perl modules. – Jim Brandt Mar 10 '11 at 2:06
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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