JupyterLab Extensions

ipywidgets

conda install ipywidgets
jupyter labextension install @jupyter-widgets/jupyterlab-manager

JupyterLab LaTeX

pip install jupyterlab-latex
jupyter labextension install @jupyterlab/latex

ipympl

pip install ipympl
jupyter labextension install jupyter-matplotlib
import matplotlib as mpl
print(mpl.get_backend())
# returns module://ipympl.backend_nbagg
import matplotlib.pyplot as plt
#plt.ion() # turn on interactive mode (default)
plt.ioff() # turn off interactive mode
fig, ax = plt.subplots(figsize=plt.figaspect(1))
fig, axes = plt.subplots(ncols=2, figsize=plt.figaspect(0.5) * 0.5)