You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-troubleshoot-deployment.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,16 @@ When deploying a model in Azure Machine Learning, the system performs a number o
37
37
38
38
Learn more about this process in the [Model Management](concept-model-management-and-deployment.md) introduction.
39
39
40
+
## Prerequisites
41
+
42
+
* An **Azure subscription**. If you do not have one, try the [free or paid version of Azure Machine Learning](https://aka.ms/AMLFree).
43
+
* The [Azure Machine Learning SDK](https://docs.microsoft.com/python/api/overview/azure/ml/install?view=azure-ml-py).
44
+
* The [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest).
45
+
* The [CLI extension for Azure Machine Learning](reference-azure-machine-learning-cli.md).
46
+
* To debug locally, you must have a working Docker installation on your local system.
47
+
48
+
To verify your Docker installation, use the command `docker run hello-world` from a terminal or command prompt. For information on installing Docker, or troubleshooting Docker errors, see the [Docker Documentation](https://docs.docker.com/).
49
+
40
50
## Before you begin
41
51
42
52
If you run into any issue, the first thing to do is to break down the deployment task (previous described) into individual steps to isolate the problem.
@@ -151,9 +161,6 @@ To avoid this problem, we recommend one of the following approaches:
151
161
152
162
If you encounter problems deploying a model to ACI or AKS, try deploying it as a local . Using a local makes it easier to troubleshoot problems. The Docker image containing the model is downloaded and started on your local system.
153
163
154
-
> [!IMPORTANT]
155
-
> Local deployments require a working Docker installation on your local system. Docker must be running before you deploy a local . For information on installing and using Docker, see [https://www.docker.com/](https://www.docker.com/).
156
-
157
164
> [!WARNING]
158
165
> Local deployments are not supported for production scenarios.
159
166
@@ -320,8 +327,8 @@ In some cases, you may need to interactively debug the Python code contained in
320
327
321
328
> [!IMPORTANT]
322
329
> This method of debugging does not work when using `Model.deploy()`and`LocalWebservice.deploy_configuration` to deploy a model locally. Instead, you must create an image using the [ContainerImage](https://docs.microsoft.com/python/api/azureml-core/azureml.core.image.containerimage?view=azure-ml-py) class.
323
-
>
324
-
>Local deployments require a working Docker installation on your local system. Docker must be running before you deploy a local . For information on installing andusing Docker, see [https://www.docker.com/](https://www.docker.com/).
330
+
331
+
Local deployments require a working Docker installation on your local system. For more information on using Docker, see the [Docker Documentation](https://docs.docker.com/).
0 commit comments