There are some perl CPAN issue during installation and it keep showing error “make test had returned bad status, won’t install without force”. After reading some CPAN documentation and relatedblog, here’s the solution to solve this CPAN issue.
To solve “CPAN error: make test had returned bad status, won’t install without force” follow the command below:-
Advertisements
- First go into perl CPAN shell
- then you can do force install of module using the command below:-
cpan> force install #module#
Change the #module# to your Module name.
- Your CPAN module should be able to install successfully by now.
Related posts:
How to block all file access except one using .htaccess
Free image editor for Mac OS X / XP / Vista / Linux
jQuery: disable autoscrolling to top when click on anchor
MySQL 5.5 PDO::__construct(): The server requested authentication method unknown to the client [mysq...
Mod Security - Open source Web Application Firewall
FCKEditor - The full feature Web based WYSIWYG HTML Editor
How to extract .bz2 file in Linux?
How to move Firefox tab bar to bottom
Share this with your friends:-
Your idea doesn’t work. getting same error…
I had to change the above to the following in order to get it working:
cpan –force install #module#
Otherwise, cpan complains about not being able to find the ‘force’ module.
And you really think it’s a good idea to force install something that failed tests, etc?