Checking for a library using pip in Python
If you need to check if the library is installed, you should use the command:
pip show library name
After executing the code, the console will display the library version number, information about its authors, and license.
Let's check if our OS has the numpy library:
pip show numpy
Check if you have matplotlib, dateparser and numpy libraries installed.