Skip to content
Ze Qian Zhang edited this page Jun 25, 2020 · 6 revisions

Welcome to the azure-storage-python wiki!

Our documentation is at http://azure-storage.readthedocs.org.

Frequently Encountered Problem: No module named 'azure.storage.blob'

  • If you want to do from azure.storage.blob import BlobServiceClient, BlobClient, ContainerClient, that means YOU ARE IN A WRONG REPO! Here's the correct repo you are looking for!

  • If you want to do from azure.storage.blob import BlockBlobService, then please make sure the azure-storage-blob version you installed is <=2.1.0. (You are highly recommended to use azure-storage-blob>=12.0.0 instead of <=2.1.0)

  • To resolve the problem, please create a new virtual environment and do pip install azure-storage-blob==<version you want to install, it could be any version <=2.1.0 or >=12.0.0>(don't do anything else)

NEWS!! azure-storage-blob version 12.0.0 is GA now!

v12.0.0 Source code link
v12.0.0 API reference documentation
v12.0.0 Package (PyPI)
Note: the current repo is for azure-storage-blob<=2.1.0, upgrading to v12.0.0 could break you current code. Link for breaking change details.