Question

    ImportError                               Traceback (most recent call last)
    <ipython-input-2-2ae261e7bd39> in <module>()
          1 import sys
          2 #sys.stderr = open('/dev/null')       # Silence silly warnings from paramiko
    ----> 3 import paramiko as pm
          4 from paramiko import AutoAddPolicy
          5 sys.stderr = sys.__stderr__

ImportError: No module named paramiko

I'm new to python/paramiko, and just started using ipython notebook to run python/paramiko scripts, but while executing the script, I get the error given above.

I'd installed python27 and pycrypto and paramiko modules earlier and still I can run the .py script from my windows cmd prompt. But, then I installed anaconda and now if I try to run the same from IPython Notebook it fails but it runs from the cmd prompt since the python paramiko is in path.

How can I install paramiko specifically in ipython's site-packages directory?

Était-ce utile?

La solution

Anaconda uses its own packages, it won't use those installed with your previous Python installation. If you are using IPython with anaconda, you need to install paramiko with conda:

conda install paramiko
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top