You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was following the instructions on building the documentation [1] using the pip install version (not conda). I was doing it within a virtualenv called .docs. I pip installed docs/doc-requirements.txt per the instructions and then ran make html which failed because notebook isn't installed:
(.docs) osboxes@osboxes:~/jupyter/notebook/docs$ make htmlpython3 autogen_config.pyTraceback (most recent call last): File "autogen_config.py", line 4, in <module> from notebook.notebookapp import NotebookAppModuleNotFoundError: No module named 'notebook'Makefile:62: recipe for target 'source/config.rst' failedmake: *** [source/config.rst] Error 1
The fix is simple, I just did pip install . from the root of the notebook project directory and that got me past that issue, but assume it should be called out in the docs as one of the steps in building the documentation.