导入azure.storage.blob时出现xml.etree错误

时间:2016-05-20 19:13:29

标签: python azure

我使用的是Python 2.7,并有以下声明:

from azure.storage.blob import BlockBlobService, ContainerPermissions

通常,这很好用。但是,今天当我在Visual Studio中运行脚本时,我收到了错误:

  

copy.Error未被用户代码消息处理:un(浅)可复制   类型对象

我尝试了" pip install azure-storage --upgrade" ,它升级了所有内容,但问题仍然存在。见下图。有任何想法吗?提前谢谢。

enter image description here

1 个答案:

答案 0 :(得分:2)

您遇到了类似问题,Pandas import error when debugging using PVTShttps://pytools.codeplex.com/workitem/2077

根据@Pavel Minaev的回答,这似乎是对PTVS检测未处理异常的方式的限制 - 它无法看到将要捕获此异常的除外块,因为它在从字符串中得到的代码。

您可以尝试升级到最新版本的python并重新安装软件包。或者只需忽略此错误,单击continue按钮继续python进度。