SyntaxFix
Write A Post
Hire A Developer
Questions
Doing sys.path.append('my-path-to-module-folder') will work, but to avoid having to do this in IPython every time you want to use the module, you can add export PYTHONPATH="my-path-to-module-folder:$PYTHONPATH" to your ~/.bash_profile file.
sys.path.append('my-path-to-module-folder')
export PYTHONPATH="my-path-to-module-folder:$PYTHONPATH"
~/.bash_profile