Search code examples
pythonparamiko

How to check paramiko version installed?


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?


Solution

  • You can get it via the __version__ attribute.

    #First, run python directly from terminal:
    python
    ...
    >>> import paramiko
    >>> print paramiko.__version__
    1.12.0