geoHeil
03/21/2021, 10:53 AMschrockn
03/21/2021, 12:43 PMpip install -e .
rather than pip install .
python -m dagit
not just dagit
daniel
03/21/2021, 4:31 PMfrom hello_b import hello_b_pipeline
to
from .hello_b import hello_b_pipeline
or
from usecase_b.hello_b import hello_b_pipeline
?geoHeil
03/21/2021, 7:30 PM-e
is not changing anything.python -m dagit
fails as well /reproduces the problem.from .hello_b import hello_b_pipeline
works. But why?pip install
would include the package as a regular package - and thus it should be available on the syspath.daniel
03/21/2021, 7:43 PM