Install paramiko on Windows

后端 未结 5 1013
别那么骄傲
别那么骄傲 2020-12-14 04:25

OK. I read installing paramiko on Windows.

All mentioned methods simply do not work.

Authors have different environments with different components/libraries

5条回答
  •  醉梦人生
    2020-12-14 05:02

    You're missing the pycrypto dependency. pip is the easiest way:

    pip install pycrypto
    pip install paramiko
    

    Alternatively, you can install from source, with:

    easy_install ./
    

    (See: https://github.com/paramiko/paramiko)

提交回复
热议问题