Start by ensuring you have Python 3.9+ installed. Use a Jupyter Notebook for interactive plotting—it's ideal for experimentation.
Installation Commands:
pip install matplotlib numpy jupyterlab
Or with Conda:
conda install -c conda-forge matplotlib numpy jupyterlab
Launch Jupyter: jupyter lab in terminal. Create a new notebook.
Test import:
import matplotlib.pyplot as plt
import numpy as np
print(plt.__version__) # Should show 3.10+ or latest