I use fexpect along with fabric to run some remote commands. Our administration server was rebuilt with a newer python, so I used pip to install fexpect.
Now I get this error on every remote system:
ImportError: No module named pexpect
If there is an assumption that pexpect will exist on all remote systems, I don't think it is justified.
What is a good workaround when pexpect is not part of the remote python installation?
I use fexpect along with fabric to run some remote commands. Our administration server was rebuilt with a newer python, so I used pip to install fexpect.
Now I get this error on every remote system: ImportError: No module named pexpect
If there is an assumption that pexpect will exist on all remote systems, I don't think it is justified.
What is a good workaround when pexpect is not part of the remote python installation?