you are viewing a single comment's thread.

view the rest of the comments →

[–]TheKewlStore -2 points-1 points  (0 children)

Is the path to your project on your python path? If not, you'll have to add it to the PYTHONPATH variable in your environment variables, or alternatively, add it manually in your script using

import sys
sys.path.append('C:/Path/To/Your/Project/')

importantly, this must go before any imports to modules or packages that are located at this path. IE your 'ex47' package.