I have the following structure:
The repo folder is located over ~/Desktop/Github/ and when I run from the command line blender --background --python ./Desktop/Github/repo_folder/main.py I get the following error:
I want to import all the classes/functions in utils.py to main.py to do that I tried the following things:
1) from scripts.utils import * got an error that scripts module wasn't recognized.
2) moved main under scripts and edited the line from .utils import *
3) tried to create __init__.py file under scripts
I use python 3.6.8 on Ubuntu 18.04 when trying (1) no errors marks shown over the IDE (Pycharm) Blender version - 2.8 installed using snap (if that helps)
Thank you for helping!

