When you launch Jupyter, it can be launched to start from a specific directory, eg c:\foo\bar.
Can this path be accessed from with Jupyter via python?
import sys
sys.path.insert(0,'c:\foo\bar')
from Libs import some_package
The reason is, for re-usability, I have a custom module and I typically add this as a submodule to where Jupyter is executed from. This could be c:... this could be some network share (keeping a project data together) or cloned on a linux machine where the path structure is totally different.