Fix: ModuleNotFoundError: No module named azure-core

ModuleNotFoundError: No module named 'azure-core'

If you are trying to run a Python code and you get the above Azure error, well the reason for this error is you do not have azure-code package installed on your device.


Fix:

  1. Open Terminal/Command Prompt.
  2. Run the below command to install azure-core
    pip3 install azure-core

    or

    pip install azure-core
  3. Once installed you should see logs like these,
    Installing collected packages: azure-core
    Successfully installed azure-core-1.28.0
Install Azure-Core Python Package using PIP3

Now try to run the Python program again, you should not see this error.

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!