'''
import from a different directory
'''
import sys, os
sys.path.append(os.path.abspath("/Users/ghb/Dropbox/Public/workspace/ghb.python"))
from utils import ghbutils_v2 as gb
utils01 = gb.ghbutils_v2()
utils01.print_version()
#OR
'''
import from a different directory
'''
import imp
# the first parameter needs to be 'ghbutils_v2', cannot use any name
ghbutils = imp.load_source('ghbutils_v2','/Users/ghb/Dropbox/Public/workspace/ghb.python/utils/ghbutils_v2.py')
utils02 = ghbutils.ghbutils_v2()
utils02.print_version()
from utils import ghbutils_v2 as gb
utils03 = gb.ghbutils_v2()
utils03.print_version()