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 also
pip show paramiko
Output would look like this
pip show paramiko
---
Name: paramiko
Version: 1.15.2
Location: /usr/local/lib/python2.7/dist-packages
Requires: pycrypto, ecdsa
You can get it via the __version__
attribute:
>>> import paramiko
>>> print paramiko.__version__
1.12.0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With