Python imports
I am trying to import Azure's DocumentIntelligenceClient with the statement:
from azure.ai.documentintelligence import DocumentIntelligenceClient
but keep getting the error: ModuleNotFoundError: No module named 'azure'
The library is normally installed with pip: pip install azure-ai-documentintelligence
and I have included in my script
Is it looking for the azure
module because the import statement says from azure.xxxxx import yyy
?
How can I import this1 Reply
you have to use #requirements: and declare all your imports
we could introduce an #ignore_imports: to make this easier