ModuleNotFoundError: No module named 'azure.storage 'error
See original GitHub issueInvestigative information
Please provide the following:
- Timestamp:
- Function App name:
- Function name(s) (as appropriate):
- Core Tools version:
Repro steps
Provide the steps required to reproduce the problem:
Expected behavior
Provide a description of the expected behavior.
Actual behavior
Provide a description of the actual behavior observed.
Known workarounds
Provide a description of any known workarounds.
Related information
Provide any related information
- Links to source
- Contents of the requirements.txt file
- Bindings used
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (5 by maintainers)
Top Results From Across the Web
No module named 'azure-storage-blob' – Finxter
How to Fix “ModuleNotFoundError: No module named 'azure-storage-blob'” in PyCharm · Open File > Settings > Project from the PyCharm menu. · Select...
Read more >No module named azure.storage.blob (when doing syncdb)
As I know, this issue is due to the version of azure storage client library for python.The old version has only one blobservice.py...
Read more >No module named 'azure.storage'; 'azure' is not a package ...
ModuleNotFoundError : No module named 'azure.storage'; 'azure' is not a package ... This Python Code doesn't run properly with python 3.9.8.
Read more >No module named 'azure.storage.blob' - Microsoft Q&A
Azure Functions Locally ModuleNotFoundError: No module named 'azure.storage.blob' ... both in VS code and cmd I get the following error:.
Read more >ModuleNotFoundError: No module named 'azure-storage'
After the installation of azure-storage python library, ModuleNotFoundError: No module named 'azure-storage' error will be solved. Thanks. Post Answer.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Viswa-Ranjan-Sahu, you are using the pip install from within the venv it seems. You would need to run
python -m pip install -r requirements.txt
from with a non-venv directory.If we need to use a virtual environment, what is the process for it to work? I work on multiple projects with different versions of python and packages, and virtual environments are mandatory in my case. It seems to me that running
func start
is not using currently activated python. I would expectpython3 -m venv .venv
andsource .venv/bin/activate
andpip install -r requirements.txt
andfunc start
to work, but it fails when importing packages that are installed in the activated virtual env. Thanks