I’m trying to test out pyssh, but I’m having trouble importing it.
I’m new to python so I’m not sure how to get this thing to import properly.
What do I have to do before I can import pyssh 0.3 into my code?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In order for Python to import a module, it has to be either in the
PYTHONPATH, or in the current directory. You can check this by looking atsys.path.Check the documentation on modules.