You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI: When trying to run Monitor on Atos, the newer versions of Perl (approx. +5.26) might have problems finding the files from your $pwd. It results to a following error in the Env_exp.log:
...Can't locate selection.pm in @INC (you may need to install the selection module) (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5)...
This is because the @inc variable (Perl's path in a sense), does not include $pwd anymore. One can solve this by adding it manually:
export PERL5LIB=$PERL5LIB:.
After that, monitor should work fine. This problem probably does not only concern Atos, but also other environments where higher Perl versions are used by default.
The text was updated successfully, but these errors were encountered:
FYI: When trying to run Monitor on Atos, the newer versions of Perl (approx. +5.26) might have problems finding the files from your $pwd. It results to a following error in the Env_exp.log:
...Can't locate selection.pm in @INC (you may need to install the selection module) (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5)...
This is because the @inc variable (Perl's path in a sense), does not include $pwd anymore. One can solve this by adding it manually:
export PERL5LIB=$PERL5LIB:.
After that, monitor should work fine. This problem probably does not only concern Atos, but also other environments where higher Perl versions are used by default.
The text was updated successfully, but these errors were encountered: