in reply to Can't locate loadable object for module IO::Tty

It means that (assuming those are the correct directories for the pm files) even though the pm file is found, it can't find or can't load the files that shoud be in:
/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto/IO/Pty
You probably need to reinstall the module. Or maybe more directories need to be included via 'use lib' or PERL5LIB (depending on what 'perl -V' says)?

Replies are listed 'Best First'.
Re^2: Can't locate loadable object for module IO::Tty
by rider754 (Novice) on Jul 16, 2013 at 20:43 UTC
    Thanks runrig. It was a permissions issue for the folders plopped over on /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto. Your tip also prompted me to search on what the auto folder is --> http://www.perlmonks.org/?node_id=568377, so bonus thank you.