in reply to Re: Force Install without Running Tests
in thread Force Install without Running Tests

I know that I'm years behind on this. But, just in case someone else goes looking for this information, try...

Using CPAN/MCPAN Shell:
perl -MCPAN -e "CPAN::Shell->notest('install', 'Math::Bigint')"

Using CPANM (CPAN::Minus):
cpanm Math::Bigint -n

Hope I'm able to help.

Replies are listed 'Best First'.
Re^3: Force Install without Running Tests
by stevieb (Canon) on Oct 17, 2016 at 06:09 UTC

    Hi mrmattipants, and welcome!

    I think that should be Math::BigInt (note the upper-case 'I' in Int).

    A normal cpanm Math::BigInt succeeds for me on 5.24.0 (on Linux Mint).

Re^3: Force Install without Running Tests
by Anonymous Monk on Feb 21, 2017 at 18:59 UTC
    method 1 (shell->notest) worked for HTML::HTMLDoc. Thank you!!