Remove the root_folder from all of the imports. Example:
from root_folder.package2.script2 import example_func
Becomes:
from package2.script2 import example_func
Also, run your app with
python main.py
instead of
python -m root_folder.main
This should solve your issue.