Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I uninstall a module...

Status
Not open for further replies.
All that those modules do is identify which modules you have installed. It doesn't delete them. "unlink" is what deletes them.

Code:
unlink "/usr/lib/[COLOR=red]LWP[/color]/[COLOR=blue]Simple[/color].pm";

That'll remove LWP::Simple for example.

Just delete the .pm files for the module you want to uninstall and you're all set.

-------------
Kirsle.net | Kirsle's Programs and Projects
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top