Python has a PATH
in which it looks for modules. You can display the current
module PATH with
import sys
print(sys.path)
and apped something to it with
import sys
sys.path.append("/some/path/to/a/module")
However, the clean way would be to write a module and install that module.