Problem: azure.cosmosdb.table not found when azure-cosmosdb-table is installed via setuptools in development mode: ``` import azure.cosmosdb.table ``` **ModuleNotFoundError: No module named 'azure.cosmosdb.table'** Quick fix: Remove `azure_cosmosdb_nspkg-2.0.2-py3.7.egg/azure/cosmosdb/__init__.py` from site-packages folder: ``` import os, azure.cosmosdb os.remove(str(azure.cosmosdb.__file__)) ```
Problem:
azure.cosmosdb.table not found when azure-cosmosdb-table is installed via setuptools in development mode:
ModuleNotFoundError: No module named 'azure.cosmosdb.table'
Quick fix:
Remove
azure_cosmosdb_nspkg-2.0.2-py3.7.egg/azure/cosmosdb/__init__.pyfrom site-packages folder: