Python 3.4 Paramiko on Windows
Jul 22, 2015
Paramiko is a native SSHv2 implementation for Python. It can easily be installed on Linux with a simple pip install paramiko
command. However, on Windows it’s a little bit more difficult as it requires the pycrypto
package that cannot be installed via pip.
-
After you install
pycrypto
for your architecture of Python, fire up IDLE and excuteimport Crypto
. If you get no errors, it has been successfully installed. -
Next, open a Command Prompt and cd over to
C:\Python34\Scripts
. -
Run,
pip install paramiko
.
Hopefully you get no errors while installing, and importing paramiko works correctly.