I installed paramiko 1.15.2 on a Linux machine. But I want to know its version using the command. Is there any command that prints the version of paramiko installed?
You can get it using the __version__ attribute:
__version__
>>> import paramiko >>> print paramiko.__version__ 1.12.0
print paramiko.__version__
Output:
'1.10.1'
you also can
pip show paramiko
The result will look like this:
pip show paramiko --- Name: paramiko Version: 1.15.2 Location: /usr/local/lib/python2.7/dist-packages Requires: pycrypto, ecdsa