From: Travis B. <tb...@my...> - 2005-01-21 06:51:32
|
Sorry if this is a newb question, I've looked at all the documentation I can find, but so far no luck. If there is a better resource than this list, I'd be happy to know what it is. Does pyssh work in jython? I've struggled to get it going, with no luck. Is pyssh an implementation of the ssh protocol in python, or is it a wrapper for pre-existing, native ssh implementations? With c-python, everything seems to work fine. These are my efforts with jython so far: >>> import pyssh Traceback (innermost last): File "<console>", line 1, in ? ImportError: no module named pyssh so I modified the registry: python.path=/usr/lib/python2.3/site-packages >>> import pyssh Traceback (innermost last): File "<console>", line 1, in ? File "/usr/lib/python2.3/site-packages/pyssh/__init__.py", line 20, in ? ImportError: no module named getpass Ok that's a little better, but where is getpass? Doing a quick file search, I found one in /usr/lib/python2.3. Next registry change: python.path=/usr/lib/python2.3/site-packages:/usr/lib/python2.3 >>> import pyssh Traceback (innermost last): File "<console>", line 1, in ? File "/usr/lib/python2.3/site-packages/pyssh/__init__.py", line 21, in ? ImportError: no module named signal This was as far as I could get. A global file search showed nothing that looked useful. Thanks in advance, -Travis Bear |