Open asymingt opened 3 months ago
I found that in more recent versions of notebook you'll need to change this:
notebook
from notebook.notebookapp import main
... to this ...
from notebook.app import main
... or else you will get a ModuleImportError.
Yes, I found some changes like this and fixed in my main (mono) repo. I'll back port some changes to this public example code.
Thanks!
I found that in more recent versions of
notebook
you'll need to change this:... to this ...
... or else you will get a ModuleImportError.