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?
You can get it via the __version__
attribute.
#First, run python directly from terminal:
python
...
>>> import paramiko
>>> print paramiko.__version__
1.12.0