You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pipeline.sh will not work as-is because calling a python script in a sub-directory, but loading a module that is not in that subdirectory will fail.
To fix: execute the scripts as modules, like this:
add a file __init__.py to all directories where there is a python script
in the pipeline, adjust the code for calling scripts from "python3 /some/path/script.py" to "python3 -m some.path.script"
pipeline.sh
will not work as-is because calling a python script in a sub-directory, but loading a module that is not in that subdirectory will fail.To fix: execute the scripts as modules, like this:
__init__.py
to all directories where there is a python scriptSee also https://peps.python.org/pep-0338/
The text was updated successfully, but these errors were encountered: