I was trying to use the Term::ReadKey module as follows: >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> use Term::ReadKey; ReadMode ('noecho'); $password = ReadLine(0); >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
but got the following: >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Can't locate Configure.pm in @INC (@INC contains: n:\util\perl C:/perl/lib C:/pe rl/site/lib .) at C:/perl/lib/Term/ReadKey.pm line 12. BEGIN failed--compilation aborted at C:/perl/lib/Term/ReadKey.pm line 12. Compilation failed in require at test.pl line 1. BEGIN failed--compilation aborted at test.pl line 1. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> The only configure.pm I could find was under c:\perl\site\lib\tk, but that was obviously not the one the module was looking for; as when I copied it to c:\perl\lib, I got even more error messages. Also, I tried to upgrade Term::Readkey, but PPM said that it was already up-to-date. Does anyone know what my problem might be? Thanks.