in reply to Re^2: Interpreter can't find known installed mods (w10)
in thread Interpreter can't find known installed mods (w10)

For grins, run this code:
use strict; use warnings; my @paths = grep{/perl/i}split ";", $ENV{PATH}; print "$_\n" for @paths; __END__ C:\Perl64\site\bin C:\Perl64\bin
I am also wondering if there is a 32 bit Perl in there somehow?
That your ASSOC is not set right is an indication that something went wrong in the installation of 64 bit Perl.

Replies are listed 'Best First'.
Re^4: Interpreter can't find known installed mods (w10)
by cormanaz (Deacon) on Aug 18, 2023 at 14:49 UTC
    This revealed an old install of Strawberry Perl, and ikegami's suggestion revealed that it is associated with the .pl extension. Thanks for the help y'all. I will look into how to change the association.