Removing a library with pip in Python
To remove a library that is no longer needed, you should use the command:
pip uninstall name of the library to be removed
Let's remove the numpy library:
pip uninstall numpy
During the deletion process, the system will ask whether you want to continue the deletion:
Proceed (Y/n)?
Answer this question affirmatively - Y. After successful removal of the library, you will see the following message:
Successfully uninstalled numpy-1.26.4
Remove the matplotlib library from your OS.
Remove dateparser library from your OS.