Works Regardless of Pip Version
Run the following in your python editor or IPython:
import pkg_resourcesinstalled_packages = {d.project_name: d.version for d in pkg_resources.working_set}print(installed_packages)
Read other answers and pulled together this combo, which is quickest and easiest inside Python.
Find the specific Packages
Conveniently you can then get items from your dict easily, i.e.
installed_packages['pandas']
>> '1.16.4'
Using Pip List Well
!pip list
will run inside your jupyter notebook if working there, simplifying the 'quick check'Combine with other utilities like grep(if you have installed)pip list | grep pandas
will get you your current pandas version for example