| 50 | |
| 51 | You might also get a message complaining about after you've entered a bunch of configuration parameters, but it complains: |
| 52 | |
| 53 | {{{ |
| 54 | Can't locate Physics/Solar/VSO/Config.pm in @INC (@INC contains: blib/arch blib/lib /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at Config.PL line 3. |
| 55 | BEGIN failed--compilation aborted at Config.PL line 3. |
| 56 | }}} |
| 57 | |
| 58 | We can force a fix by going into the module it was trying to build, and telling the Config.PL script where the VSO modules are installed: |
| 59 | |
| 60 | {{{ |
| 61 | cd ~/.cpanm/latest-build/Physics-Solar-VSO-(something) |
| 62 | vi Config.PL |
| 63 | # add at the top: use lib '/opt/vso/lib/perl5'; |
| 64 | # then save & exit |
| 65 | cpanm . |
| 66 | }}} |
| 67 | |
| 68 | |