Firstly, I am sure that the module I want to enable has not been installed globally. Then I add a symlink to the includee directory:
# With pwd == module to which I want to add functionality. ln -s /path/to/some_other_module_to_include .
and then I can do standard import. This allows you to use multiple versions, etc. This does not require changing any global settings, and you do not need to change the program code if you are working on different machines (just change the symbolic link).
Peter source share