Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2025 03:43 AM
Hi @marko_rd
As per my understanding, if the azure-storage-blob-changefeed package is installed without the --pre flag, it might not install the complete version, which can lead to the ModuleNotFoundError.
This kind of issue can also happen due to version mismatches or conflicts between notebook-scoped and cluster-scoped libraries.
You can try the following steps to resolve it:
- Uninstall any existing version of the package:
%pip uninstall azure-storage-blob-changefeed -y - Reinstall it using the pre-release flag:
%pip install azure-storage-blob-changefeed --pre - Restart the Python process
- Then try importing again.