There is a project:
project |__library | |__python | |__resource | |__ __init__.py |__web |__gui |__main.py the project is launched through the launch of the file web / gui / main.py, but when you run this launch an error occurs
Traceback (most recent call last): File "web/gui/main.py", line 8, in <module> import library.python.resource as resource ImportError: No module named python.resource I run from the project folder:
python web/gui/main.py How to run the project correctly so that he sees this module?