Reputation: 682
I can't seem to get the logger to work in the online azure notesbooks workspace. I'm using python 3.6 environment. Running this import:
from azureml.logging import get_azureml_logger
gives me the following error:
ModuleNotFoundError: No module named 'azureml.logging
Upvotes: 3
Views: 1760
Reputation: 150
The solution is
I found the blob url here. It's inside docker container dependencies.
https://github.com/Azure/LearnAI-Bootcamp/blob/master/lab03.3_manage_conda_envs_in_aml/0_README.md
Upvotes: 1
Reputation: 2784
It seems that it's installed with Azure ML Workbench.
There is (currently) no way to install this as a stand-alone package from what I can find. If you look at the azureml
package on GitHub there is no "logging" in it.
Upvotes: 1