My solution was to tell Python of that additional module import path by adding a snippet like this one to the notebook:import osimport sysmodule_path = os.path.abspath(os.path.join('..'))if module_path not in sys.path: sys.path.append(module_path) ...