- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2025 06:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2025 12:01 AM - edited 06-25-2025 12:02 AM
src/
├── datalake_utils/
│ ├── __init__.py
│ └── utils.py
├── main.py # This file can import datalake_utils ✅
└── relayevents/
└── relayevents.py # This notebook can't import datalake_utils ❌
# If notebook is in src/
from datalake_utils import utils as ut # ✅ Works fine
# If notebook is in src/relayevents/
from datalake_utils import utils as ut # ❌ ModuleNotFoundError
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2025 01:20 AM
It appears that there is a pre-installed package called datalake_utils available within Databricks. I had to rename my package to something else, and it worked like a charm.