in reply to Install perl module on 64 bits system

Modules are usually case-sensitive.
perl.j-----A Newbie To Perl
  • Comment on Re: Install perl module on 64 bits system

Replies are listed 'Best First'.
Re^2: Install perl module on 64 bits system
by GrandFather (Saint) on Aug 05, 2011 at 01:41 UTC

    No. Package names are always case sensitive and the case of module file names must match the appropriate package names for Perl to do the right thing. On case preserving but case insensitive operating systems such as Windows trouble tends to happen later rather than sooner and bite harder as a consequence if you use different module file name case or directory name case than the case used for the package.

    True laziness is hard work
      Thanks for explaining that, now it installs the package correctly, thank you !