Can't Import Pxssh From Pexpect
i'm trying to import pxssh from pexpect. But i get the following error, and i dont know how to solve this. >>> from pexpect import pxssh Traceback (most recent call last
Solution 1:
Please check if your Pexpect version is something like 2.3, if so, you need to update the package to 4.2 or greater. To do it run the following:
sudo easy_install --upgrade pexpect
Post a Comment for "Can't Import Pxssh From Pexpect"