@BHARATH KUMAR K C S The error indicates that the missing module is azureml.train
which is part of the package azureml-train-automl
Since you have installed only azureml-sdk the package in question is still missing. Ideally, when you want to use the Azure ML SDK you have to install the azureml-core
package first and then install the required packages as required. See this page for details.
So, for your scenario try the following apart from installing azureml-sdk
package.
pip install --upgrade azureml-core
pip install --upgrade azureml-train-automl
If you are using a notebook environment add a %
sign in front on pip install to install the same for the environment selected.
I hope this helps!!
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.