My python file is in the folder 'RealData/Python/run.py' What I need to do in run.py is to import another python file: plot_ensembles.py which is in the folder 'RealData/convolution/plot_ensembles.py'
My code returns an error:
import sys
sys.path.append( 'myname/Documents/RealData/convolution')
import plot_ensembles
ImportError: No module named 'plot_ensembles'
Probably this is a stupid mistake...