On Wednesday, 15 November 2017 16.01.10 CET [email protected] wrote: > i tried to install it on my centos control machine with: yum install -y > pexpect > > i still have the error. Is it the right package?
I guess that's the correct package name, but is the version >=3.3, that's what you need according to the documentation.[1] You can check that with yum or this python -c 'import pexpect; print pexpect.__version__' If the package is to old, an alternative is to install pexpect with pip. [1] https://docs.ansible.com/ansible/latest/expect_module.html#requirements-on-host-that-executes-module -- Kai Stian Olstad -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/14278890.cx3komUEzd%40x1. For more options, visit https://groups.google.com/d/optout.
