How to check paramiko version installed?

akkidukes picture akkidukes · Feb 6, 2015 · Viewed 22.6k times · Source

I have installed paramiko 1.15.2 on Linux machine. But i want to know its version via command. Is there any command that prints out version of paramiko installed?

Answer

Igor Hatarist picture Igor Hatarist · Feb 6, 2015

You can get it via the __version__ attribute:

>>> import paramiko
>>> print paramiko.__version__
1.12.0