bhushanQA has asked for the wisdom of the Perl Monks concerning the following question:

IO::Stty not installed, cannot change mode , any suggestion for this, I tried to install IO-Stty-0.03.tar.gz as well but no make file and asking many dependencies. Anybody can help me with this.
  • Comment on IO::Stty not installed, cannot change mode

Replies are listed 'Best First'.
Re: IO::Stty not installed, cannot change mode
by salva (Canon) on Apr 19, 2016 at 10:29 UTC
    IO::Stty uses Module::Build to build itself. Are those the dependencies you are talking about?

    Anyway, it's a very simple and pure Perl module. You can install it as follows:

    $ perl -MExtUtils::MakeMaker -e'WriteMakefile(NAME, "IO::Stty")' $ make $ sudo make install
      Thanks Salva... It worked for me.
      HI Salva, thanks for the simple info, but it helped me a lot to get the IO::Stty installed on the linux machine!!!! 1000x Thanks, Davies / scta
Re: IO::Stty not installed, cannot change mode
by haukex (Archbishop) on Apr 19, 2016 at 10:04 UTC