Force install perl module from command line

If a perl module is failing harmless tests and refuses to install, you can force it to with this snippet:

perl -MCPAN -e "CPAN::Shell->force(qw(install IO::Socket::SSL));"

Comments are closed.