In the first cell of every iPython (Jupyter) notebook, I almost always type:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
Is there a way to make it so that this cell appears at the top of each new notebook I create by default?
For example, could I save a template .ipynb
file somewhere, which is copied by iPython when creating a new notebook?
(I found this question, but it seems to be more about css than default content in cells.)