Traceback (most recent call last): File "/diagnostics/rtd-env/lib/python3.11/site-packages/jupyter_cache/executors/utils.py", line 58, in single_nb_execution executenb( File "/diagnostics/rtd-env/lib/python3.11/site-packages/nbclient/client.py", line 1323, in execute return NotebookClient(nb=nb, resources=resources, km=km, **kwargs).execute() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/diagnostics/rtd-env/lib/python3.11/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped return loop.run_until_complete(inner) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/diagnostics/rtd-env/lib/python3.11/asyncio/base_events.py", line 654, in run_until_complete return future.result() ^^^^^^^^^^^^^^^ File "/diagnostics/rtd-env/lib/python3.11/site-packages/nbclient/client.py", line 709, in async_execute await self.async_execute_cell( File "/diagnostics/rtd-env/lib/python3.11/site-packages/nbclient/client.py", line 1062, in async_execute_cell await self._check_raise_for_error(cell, cell_index, exec_reply) File "/diagnostics/rtd-env/lib/python3.11/site-packages/nbclient/client.py", line 918, in _check_raise_for_error raise CellExecutionError.from_cell_and_msg(cell, exec_reply_content) nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell: ------------------ from matplotlib import rcParams, cycler import matplotlib.pyplot as plt import numpy as np plt.ion() ------------------ --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) Cell In[1], line 1 ----> 1 from matplotlib import rcParams, cycler  2 import matplotlib.pyplot as plt  3 import numpy as np  4 plt.ion() ModuleNotFoundError: No module named 'matplotlib'