in reply to Perl Module install help
Are you on a case-sensitive file system?
The file system (and Perl) make a distinction between
andSys::RunALone # upper case "L"
Sys::RunAlone # lower case "l"
Once you fix that in your script, you'll find that error gone.
You could also have found that yourself from the error message:
Can't locate Sys/RunALone.pm in @INC (...)
If you search for the file RunALone.pm, you will find that in fact it is not there, which should have told you that there is a subtle difference in what you ask for and what actually exists.
|
|---|