【发布时间】:2021-06-20 00:14:33
【问题描述】:
我正在尝试将文件上传到 azure blob 存储。
使用以下命令安装库
pip install azure-storage-blob
由于以下错误,项目无法运行
[ERROR] Runtime.ImportModuleError: Unable to import module 'app/handler': No module named 'cryptography.hazmat.bindings._padding'
任何人都可以帮助解决此错误。我正在从以下链接关注文档 https://docs.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-python
使用 Python 3.7
【问题讨论】:
-
你试过
pip install cryptography吗? -
是的,它已经存在了
标签: python python-3.x azure boto3 azure-blob-storage