in reply to Force Install without Running Tests

sudo cpanm --notest Math::Bigint

App::cpanminus.

Replies are listed 'Best First'.
Re^2: Force Install without Running Tests
by mrmattipants (Initiate) on Oct 16, 2016 at 22:05 UTC

    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.

      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).

      method 1 (shell->notest) worked for HTML::HTMLDoc. Thank you!!
Re^2: Force Install without Running Tests
by Anonymous Monk on Jul 22, 2014 at 16:06 UTC
    This does not work.