I am running the following project on windows with the following directory structure..
Project\Src\Lib\General\Module_lib.py
Project\Src\executables\example.py
Now , I want to import Module_lib.py
in example.py
.. Please help me how to solve this?
content of example.py
:
from ..lib.general.Module_lib import Module_lib
output :
Value Error : Attempted relative import in non-packages
what is the best way to achieve this ?