Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python module ecdsa errors while running paramiko

I am trying to install paramiko module..it fails with the below error

python ./test.py 
Traceback (most recent call last):
  File "./test.py", line 30, in <module>
    import paramiko
  File "/tmp/build-paramiko/paramiko-1.12.0/paramiko/__init__.py", line 64, in <module>
    from transport import SecurityOptions, Transport
  File "/tmp/build-paramiko/paramiko-1.12.0/paramiko/transport.py", line 45, in <module>
    from paramiko.ecdsakey import ECDSAKey
  File "/tmp/build-paramiko/paramiko-1.12.0/paramiko/ecdsakey.py", line 24, in <module>
    from ecdsa import SigningKey, VerifyingKey, der, curves
ImportError: No module named ecdsa

Any suggestions on how to proceed with the paramiko installation ?

like image 846
satishkumar432 Avatar asked Dec 11 '13 16:12

satishkumar432


1 Answers

Download the package from 'https://github.com/warner/python-ecdsa' and install it using command

python setup.py install

Your problem will be solved.

like image 74
Sam Avatar answered Oct 19 '22 12:10

Sam