SP_6721
Honored Contributor II

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.