I am trying to build executable using pyinstaller in mac os (python 3.7) , my file parser.py is using some of my other files in the same directory , code includes import as below :
from logparser import parsingutility as parseUtil
pyintsaller builds the executables , running it shows ModuleNotFoundError: No module named logparser.
I tried including directory path in --paths while building executable. Didn't work .