Reputation: 1040
This is a follow up question for a question I asked not long ago. The answer is correct and works great, but when I tried to apply it to the main package it didn't work.
Lets say I have the following files structure:
a/
->b/
->c/
-> __init__.py
-> script1.py
-> script2.py
->d/
-> __init__.py
-> script3.py
(The __init__
files are just like in the answer I linked above).
And in script3.py
I import script1.py
like so: from b.c import script1
.
It works when I run it in Pycharm, but when I clone the repository in Colab (all this code is in a GitHub repository) I get the error: ModuleNotFoundError: No module named 'b'
Which makes sense because my package is not in the sys.path
variable.
And adding the folder a
to the sys.path
manually, after I cloned the repository, helps but it is not a real solution because I can't always do it (e.g. in unit-tests).
So my question is, how can I fix it¿ Adding the __init__
file to folder b
didn't help.
Notes:
a
is the project's folder, so it is not part of the path.script3
like so from a.b.d import script3
. In this case I must specify folder a
because, again, b
is not in sys.path
.Upvotes: 0
Views: 52
Reputation: 583
You can backwardly add folder b
to your path and then import only from c
folder, like this:
from os.path import realpath, dirname
import sys
sys.path.append(dirname(dirname(realpath(__file__))))
from c import script1
Upvotes: 1