Installing — Paramiko documentation
www.paramiko.org › installingThere are also a number of optional dependencies you may install using setuptools ‘extras’: If you want all optional dependencies at once, use paramiko[all]. For Match exec config support, use paramiko[invoke] (which installs Invoke). For GSS-API / SSPI support, use paramiko[gssapi], though also see the below subsection on it for details.
Installing (1.x) — Paramiko documentation
https://www.paramiko.org/installing-1.x.htmlParamiko 1.7-1.14 have only one dependency: PyCrypto. Paramiko 1.15+ (not including 2.x and above) add a second, pure-Python dependency: the ecdsa module, trivially installable via PyPI.. Paramiko 1.15+ (again, not including 2.x and up) also allows you to optionally install a few more dependencies to gain support for GSS-API/Kerberos. Users on Windows may want to opt for …
python - trying to install paramiko for python3 - Ask Ubuntu
askubuntu.com › questions › 1002937Feb 04, 2018 · Dunno about the version on PyPI, but you can get an older, stable version (1.2.3 on Xenial) from the Ubuntu repos using sudo apt install python3-cryptography. As your Paramiko needs a newer version though, maybe also use the version from Ubuntu's repositories here instead (which also depends on python3-crypto and not python3-cryptography for some reason...): sudo apt install python3-paramiko .