Verifying Matplotlib Installation

To verify if Matplotlib has been successfully installed in your system using pip install matplotlib run the below code in a Python IDE of your choice:

Python3




import matplotlib
matplotlib.__version__


If successfully installed you will get the following output.


How to Install Matplotlib on python?

Matplotlib is an amazing visualization library in Python for 2D plots of arrays. Matplotlib is a multi-platform data visualization library built on NumPy arrays and designed to work with the broader SciPy stack. In this article, we will look into the various process of installing Matplotlib on Windows.

Similar Reads

Install Matplotlib on Windows

For Conda Users...

Verifying Matplotlib Installation

To verify if Matplotlib has been successfully installed in your system using pip install matplotlib run the below code in a Python IDE of your choice:...