Bookamp
Bookamp

Reputation: 682

'azureml.logging' module not found

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

Answers (2)

Jon
Jon

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

Related Questions