Home > other >  Databricks: No module named azure.storage
Databricks: No module named azure.storage

Time:08-18

I was following the answer in this question enter image description here

None of the previous attempts was able to fix my "ModuleNotFoundError: No module named 'azure.storage'"

enter image description here Does anyone have a way to fix this issue?

CodePudding user response:

This class is located in another package: azure.storage.file.fileservice (doc), so you need to write:

from azure.storage.file.fileservice import FileService
  • Related