【问题标题】:NET::SSH::Expect configurations to work over windowsNET::SSH::Expect 配置在 windows 上工作
【发布时间】:2018-05-27 04:50:26
【问题描述】:

机器详细信息:Windows7,64 位。 我在 Eclipse 中集成了 perl 并使用 Net::SSH::Except 模块编写脚本,但收到Can't locate Net/SSH/Expect.pm in @INC (you may need to install the Net::SSH::Expect module) (@INC contains: C:/Perl64/site/lib/MSWin32-x64-multi-thread C:/Perl64/site/lib C:/Perl64/lib .) 的错误

因此,我尝试使用命令cpan>notest install IO::Tty 为 Expect 依赖项安装 IO::Tty。 我收到以下错误消息: 并且没有安装模块,甚至没有安装NET::SSH::Expect

cpan> notest install IO::Tty
Reading 'C:\Perl64\cpan\Metadata'
Database was generated on Mon, 11 Dec 2017 04:41:02 GMT
Fetching with LWP:
http://ppm.activestate.com/CPAN/authors/01mailrc.txt.gz
Reading 'C:\Perl64\cpan\sources\authors\01mailrc.txt.gz'

.............................................................DONE

Fetching with LWP:
http://ppm.activestate.com/CPAN/modules/02packages.details.txt.gz
Reading 'C:\Perl64\cpan\sources\modules\02packages.details.txt.gz'
Database was generated on Tue, 12 Dec 2017 04:29:02 GMT
.............
**New CPAN.pm version (v2.16) available.
[Currently running version is v2.1101]
You might want to try
install CPAN
reload cpan
to both upgrade CPAN.pm and run the new version without leaving
the current session.**


..............................................................DONE
Fetching with LWP:
http://ppm.activestate.com/CPAN/modules/03modlist.data.gz
Reading 'C:\Perl64\cpan\sources\modules\03modlist.data.gz'
DONE
Writing C:\Perl64\cpan\Metadata
Running install for module 'IO::Tty'
Checksum for C:\Perl64\cpan\sources\authors\id\T\TO\TODDR\IO-Tty-1.12.tar.gz 
ok
Scanning cache C:\Perl64/cpan/build for sizes
...............................................................DONE

IO-Tty-1.12/
IO-Tty-1.12/ChangeLog
IO-Tty-1.12/Makefile.PL
IO-Tty-1.12/MANIFEST
IO-Tty-1.12/META.json
IO-Tty-1.12/META.yml
IO-Tty-1.12/Pty.pm
IO-Tty-1.12/README
IO-Tty-1.12/t/
IO-Tty-1.12/try
IO-Tty-1.12/Tty.pm
IO-Tty-1.12/Tty.xs
IO-Tty-1.12/t/test.t
Configuring T/TO/TODDR/IO-Tty-1.12.tar.gz with Makefile.PL
This module requires a POSIX compliant system to work. Try cygwin if you 
need this module on windows OS unsupported at Makefile.PL line 6.
Warning: No success on command[C:\Perl64\bin\perl.exe Makefile.PL 
INSTALLDIRS=site]
TODDR/IO-Tty-1.12.tar.gz
C:\Perl64\bin\perl.exe Makefile.PL INSTALLDIRS=site -- NOT OK
Failed during this command:
TODDR/IO-Tty-1.12.tar.gz                     : writemakefile NO 
'C:\Perl64\bin\
perl.exe Makefile.PL INSTALLDIRS=site' returned status 65280

我已尝试使用以下命令安装 IO::Tty cpanm --install IO::Tty cpanm --verbose IO::Tty cpanm --force IO::Tty 全部失败,这可能是由于 perl 版本较低。 从 cmd 升级 cpan 以及通过 cmd 升级 perl 的命令是什么?

【问题讨论】:

  • 您的日志显示This module requires a POSIX compliant system to work。您不能在标准窗口上安装它。请考虑使用Net::SSH:;Perl
  • @Borodin 谢谢你,是的,我会尝试安装它..

标签: perl cmd cpan


【解决方案1】:

遗憾的是,Perl Expect 模块需要基于 UNIX 的操作系统才能运行。我已经在windows平台上实现了几次,基本上你需要安装一个较旧的TCL ActiveState发行版,然后你可以让Perl脚本调用一个外部的EXPECT脚本,像这样:

$expectOutput = `[path_to_expect_script.expect]`;

然后您的变量将包含 Expect 脚本的输出。

希望这会有所帮助!

编辑:您可能想改写您的标题,以吸引更多与在 windows 上使用 expect 相关的答案。

【讨论】:

  • 行得通,标题建议:太好了,感谢您提供有关 Expect 模块的信息,这节省了很多时间,我陷入了反复试验.. 我尝试了另一种方法,我使用了 Net ::SSH2 而不是 NET::SSH:Expect,它完美运行..
【解决方案2】:

解决了!

  • 新版Expect兼容windows,但需要用cygwin安装..

  • 在 eclipse 中,将解释器设为 cygwin(windows -> 首选项 -> EPIC Perl -> 解释器)。

并执行脚本:)

【讨论】:

    猜你喜欢
    • 2022-10-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-02-02
    • 2022-07-05
    • 2018-12-23
    • 1970-01-01
    相关资源
    最近更新 更多