Matplotlib
Installation under Conda
- Version 3.0.0
pip install matplotlib - Version 2.3.3
conda install matplotlib
Jupyter notebook and Jupyterlab
- Interactive mode: No need
plt.show()%matplotlib inline import matplotlib.pyplot as plt - Non-interactive mode: Need
plt.show()and ipympl%matplotlib widget import matplotlib.pyplot as plt plt.ioff()