--pylab
no longer works for Jupyter, but fortunately we can add a tweak in the ipython_config.py
file to get both pylab
as well as autoreload
functionalities.
c.InteractiveShellApp.extensions = ['autoreload', 'pylab']
c.InteractiveShellApp.exec_lines = ['%autoreload 2', '%pylab']