I installed paramiko with pip install paramiko
, but can't import paramiko
What's wrong with my python? (on mac)
I installed paramiko with pip install paramiko
, but can't import paramiko
What's wrong with my python? (on mac)
Try to uninstall it and install it again.
pip uninstall paramiko
pip install paramiko
edit:
On Windows or Mac OS X, provided your pip is modern (8.x+): nothing else is required. pip will install statically compiled binary archives of Cryptography & its dependencies.
On Linux, or on other platforms with older versions of pip: you’ll need a C build toolchain, plus development headers for Python, OpenSSL and libffi. Again, see Cryptography’s install docs; these requirements may occasionally change.
reference: http://www.paramiko.org/installing.html