Nikhil Raut
09/21/2020, 6:33 AMSergii Ivakhno
09/21/2020, 11:31 AMimportlib.import_module(pipeline)
, where pipeline is a path to dagster pipeline, i.e. blah/pipeline.py
. When I run poetry run python dagtsrer.py --path blah/pipeline.py
I get an error
import dagster_pandas as dagster_pd
File "/Users/apple/Library/Caches/pypoetry/virtualenvs/pwmf-qUT5bdGW-py3.7/lib/python3.7/site-packages/dagster_pandas/__init__.py", line 1, in <module>
from dagster.core.utils import check_dagster_package_version
ModuleNotFoundError: No module named 'dagster.core'; 'dagster' is not a package
importlib.import_module(pipeline)
from poetry shell. Other third-party packages also seem to import dynamically with no problems. Any suggestions would be most appreciated - thanks in advance!dagtsrer.py
masked the dagtsrer
package during import 😱