Cody Peterson
05/12/2023, 9:48 PMvenv_dag
with just dagster/dagit installed, and venv
with everything elseThe above exception was caused by the following exception:
ModuleNotFoundError: No module named 'ibis'
File "/Users/cody/repos/.../venv_dag/lib/python3.11/site-packages/dagster/_core/code_pointer.py", line 135, in load_python_module
return importlib.import_module(module_name)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/cody/.asdf/installs/python/3.11.3/lib/python3.11/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "<frozen importlib._bootstrap>", line 1206, in _gcd_import
File "<frozen importlib._bootstrap>", line 1178, in _find_and_load
File "<frozen importlib._bootstrap>", line 1149, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "/Users/cody/repos/.../dagster-demo/dagster_project/__init__.py", line 4, in <module>
from .resources import table_io_manager
File "/Users/cody/repos/.../dagster-demo/dagster_project/resources/__init__.py", line 1, in <module>
from .table_io_manager import TableIOManager
File "/Users/cody/repos/.../dagster-demo/dagster_project/resources/table_io_manager.py", line 1, in <module>
import ibis
from dagster import ConfigurableIOManager
and import ibis
in the same Python fileZach
05/15/2023, 5:20 PM