- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Perl: Can't locate ExtUtils/MakeMaker.pm in @I...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2007 03:04 AM
тАО02-06-2007 03:04 AM
# perl Makefile.PL
Can't locate ExtUtils/MakeMaker.pm in @INC
Anyone can tell me how to begin addressing this?
Solved! Go to Solution.
- Tags:
- Perl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2007 03:11 AM
тАО02-06-2007 03:11 AM
Solution# perl -V
...should show your @INC contents and 'ExtUtils/MakeMaker.pm' ought to be in one of the paths! I'd do:
# find /usr -name MakeMaker.pm
...for example, using the root level directory to make sure you have the module (you should).
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2007 04:27 AM
тАО02-06-2007 04:27 AM
Re: Perl: Can't locate ExtUtils/MakeMaker.pm in @INC
Thanks for the prompt reply.
Ok, I've actually got the MakeMaker library in /opt/perl/lib/5.8.3... HOWEVER, there is also /opt/perl/lib/5.6.1 (which doesn't have it). Whenever I run perl, it always runs the 5.6.1 version...
And, when I run "perl -V" I get :
$ perl -V
Can't locate Config.pm in @INC (@INC contains: /opt/perl/lib/5.6.1/PA-RISC1.1-thread-multi /opt/perl/lib/5.6.1 /opt/perl/lib/site_perl/5.6.1/PA-RISC1.1-thread-multi /opt/perl/lib/site_perl/5.6.1 /opt/perl/lib/site_perl .).
BEGIN failed--compilation aborted.
Ugh..
BUT, /opt/perl/bin/perl-dynamic -V returns:
... all of the good stuff we'd all expect about version 5.8.3... whoopee!
So, How do I make perl start using the 5.8.3 version and not the 5.6.1 version when both are loaded in the server? Because, when I run /opt/perl/bin/perl-dynamic Makefile.pm - it actually returns me the makefile that I needed.
Is this just simply a case of fixing the symbolic links for "/usr/bin/perl" that eventually land in /opt/perl/bin/ to run the dynamic version (which is 5.8.x) instead of the static version (which is 5.6.x)???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2007 04:41 AM
тАО02-06-2007 04:41 AM
Re: Perl: Can't locate ExtUtils/MakeMaker.pm in @INC
> Is this just simply a case of fixing the symbolic links for "/usr/bin/perl" that eventually land in /opt/perl/bin/ to run the dynamic version (which is 5.8.x) instead of the static version (which is 5.6.x)???
Yes, that's what I'd do. Afterall, 5.8 has so many more nice things than 5.6.
It is recommended that '/usr/bin/perl' and '/usr/local/bin/perl' be symbolic links to the actual perl binary.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2007 05:49 AM
тАО02-06-2007 05:49 AM
Re: Perl: Can't locate ExtUtils/MakeMaker.pm in @INC
I appreciate the help.
I totally screwed up on that last point assignment, I meant to put 10 pts, and now... it's too late. Sorry...
If I ever actually run into you at a conference, etc. - I owe you two beers in exchange for those missing two points.