2

I get the error message module not found for pxssh.

I am running ubuntu 16.04 with Python 2.7.12 with expect 4.0.1-1.

import pxssh
ImportError: No module named pxssh

Is pxssh included in pexpect

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Randolph Hill
  • 81
  • 1
  • 1
  • 5

1 Answers1

10

You need to import pxssh from pexpect:

from pexpect import pxssh

See the examples for the pxssh class from pexpect documentation.

Railslide
  • 5,344
  • 2
  • 27
  • 34