in reply to Re: Install perl module on 64 bits system
in thread Install perl module on 64 bits system

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
  • Comment on Re^2: Install perl module on 64 bits system

Replies are listed 'Best First'.
Re^3: Install perl module on 64 bits system
by hujunsimon (Sexton) on Aug 06, 2011 at 00:08 UTC
    Thanks for explaining that, now it installs the package correctly, thank you !