in reply to Re: Cannot access CPAN Installs
in thread Cannot access CPAN Installs

Just pointing out an important difference between the following:

use lib qw(C:/Users/Chris Brown/perl5/lib/perl5); use lib 'C:/Users/Chris Brown/Perl5/lib/perl5';

The qw(...) syntax will split the string on whitespace and turn it into a list. So the first line is equivalent to:

use lib ( 'C:/Users/Chris', 'Brown/perl5/lib/perl5' );

And that is not what you want. haukex correctly uses quotes for the path and that is why it works for him.