I have this environment:
pip3 freeze | grep -i azure
azure==1.0.3
azure-batch==1.1.0
azure-common==1.1.4
azure-mgmt==0.20.2
azure-mgmt-common==0.20.0
azure-mgmt-compute==0.20.1
azure-mgmt-network==0.20.1
azure-mgmt-nspkg==1.0.0
azure-mgmt-resource==0.20.1
azure-mgmt-storage==0.20.0
azure-nspkg==1.0.0
azure-servicebus==0.20.1
azure-servicemanagement-legacy==0.20.2
azure-storage==0.33.0
msrestazure==0.4.4
I try to execute a program in python that start so:
from azure.storage.blob import BlockBlobService,ContentSettings
block_blob_service = BlockBlobService("xxx","***")
And python output this error:
Traceback (most recent call last):
File "azure.py", line 1, in <module>
from azure.storage.blob import BlockBlobService,ContentSettings
File "/Users/dgonzalez/Proyectos/iloveplatos/git/back/app/azure.py", line 1, in <module>
from azure.storage.blob import BlockBlobService,ContentSettings
ImportError: No module named 'azure.storage'; 'azure' is not a package
Any ideas, I have tested with other versions, but I have the same problem. I am blocked at this point.
Thanks!!