http://www.perlmonks.org?node_id=1046363


in reply to Re^4: Perl issue with Windows 7 vs XP
in thread Perl issue with Windows 7 vs XP

You can quickly check if Crypt::SSLeay is installed by running
perl -MCrypt::SSLeay -e1

on the command line. If it does not error, then you have the module installed.


#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

Replies are listed 'Best First'.
Re^6: Perl issue with Windows 7 vs XP
by Anonymous Monk on Jul 29, 2013 at 13:52 UTC

    Hey Kenneth, I figured out the problem I had. It was an access issue. The version of perl I was using was on the network servers and I only had permission to access a sub folder which perl was located in. As such, windows explorer would work fine in locating it, but the path would not be found when perl was executed through cmd.

      So a partially correct diagnosis - a Win 7 security restriction was preventing the install directories from being read. I think the car talk guys would take it as a win....

      Thanks for posting the solution; the more complete this site's archive is, the better it is for everyone.


      #11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.