Raspbian Python azure.storage ImportError: No module named cryptography.hazmat.primitives.keywrap

Raspbian Python azure.storage ImportError: No module named cryptography.hazmat.primitives.keywrap

我正在尝试将我的 RPi3 中的图片上传到 Azure blob 存储。我正在使用 raspbian 和 python 模块,如下所述。

我的问题是无论我做什么我都会收到以下错误

>>> from azure.storage import BlobService
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/pi/.virtualenvs/azure/lib/python2.7/site-packages/azure_storage-0.33.0-py2.7.egg/azure/storage/__init__.py", line 21, in <module>
from .models import (
  File "/home/pi/.virtualenvs/azure/lib/python2.7/site-packages/azure_storage-0.33.0-py2.7.egg/azure/storage/models.py", line 27, in <module>
from cryptography.hazmat.primitives.keywrap import(
ImportError: No module named cryptography.hazmat.primitives.keywrap

我已经尝试了 pip install cryptographyhttps://pypi.python.org/pypi/azure-storage,但这并没有改变任何东西。我一直收到同样的错误 ImportError: No module named cryptography.hazmat.primitives.keywrap。我什至尝试只导入 azure.storage 但这会引发相同的错误。
如果有人能阐明如何让 azure-storage-blob 在 Raspbian 上工作,我将不胜感激。 提前谢谢你。

如果您不需要 0.33.0 的新功能,可以尝试坚持使用 azure-storage 0.32.0 以避免使用密码学。在某些系统上使用加密技术存在一些困难 (https://github.com/Azure/azure-storage-python/issues/219)