gpt4 book ai didi

python - 如何在Python中导入Azure BlobService?

转载 作者:太空狗 更新时间:2023-10-29 20:33:31 24 4
gpt4 key购买 nike

我们能够导入 azure.storage,但无法访问 BlobService 属性

文档说使用以下导入语句:

from azure.storage import BlobService

但是出现以下错误:

ImportError: cannot import name BlobService

我们尝试了以下方法:

import azure.storage
...
foo = azure.storage.BlobService(...)

但是收到以下错误:

AttributeError: ‘module’ object has no attribute ‘BlobService’

我们还使用“azure.storage.blob”而不是“azure.storage”尝试了上述所有内容

我们尝试更新 azure-storage 包,但它是最新的(版本 0.30.0)

我们还尝试卸载 azure-storage 并安装整个 azure 软件包,但得到了相同的结果。我们尝试使用 pip 和 conda 安装它们,但两次结果相同。

我知道输出表明此版本的 azure.storage 没有 BlobService 属性,但文档明确指出要从那里导入。

https://azure.microsoft.com/en-us/documentation/articles/machine-learning-data-science-create-features-blob/

最佳答案

如果你想使用BlobService,可以安装azure.storage 0.20.0包,该版本中有BlobService。在最新的 azure.storage 0.30.0 中,BlobSrvice 被拆分为 BlockBlobService、AppendBlobService、PageBlobService 对象,您可以使用 BlockBlobService 替换 BlobService.

关于python - 如何在Python中导入Azure BlobService?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35558463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com