Find which version of package is installed with pip
You can use the following command to check the version of a package installed with pip:
pip show <package-name>
For example, to check the version of the package "requests", you would use:
pip show requests
This will give you the package details including version number
You can also use
pip freeze | grep <package-name>
This will give you the package name and version of all installed packages.