-
Notifications
You must be signed in to change notification settings - Fork 239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't load package in Azure WebJobs #224
Comments
Hi @mawah, Are you by chance running this file with the Thanks! |
Hi Rambo, Thanks for the suggestion to require the FYI, re: the
Most modern wheels do not have that ABI tag, which is why
...and included along with a corresponding entry in the |
I'd like to create a Python Azure WebJob that uses this module to read/write from Azure Blob Storage. I included the
azure-storage
package in my App Service'srequirements.txt
file:...and the package installs via pip without errors during App Service deployment. After install, the directory structure under
D:\home\site\wwwroot\env\Lib\site-packages\azure\storage
looks exactly as I would expect. However, when I try to importBlockBlobService
fromazure.storage.blob
:...something seems to go wrong with the relative imports, at least as far as I can tell from the error message:
FWIW, other packages are installing properly with the same approach. I'm not 100% certain from the error message that this is an
azure-storage
package-specific issue, but if anyone here knows the cause or can suggest a workaround, I'd be very appreciative.The text was updated successfully, but these errors were encountered: