Skip to content

Commit 9179bb6

Browse files
updated conda dependency to manifest command
1 parent 50a836e commit 9179bb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/desktop-workbench/tutorial-classifying-iris-part-3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ First, register the model. Then generate the manifest, build the Docker image, a
270270
To create a manifest, use the following command and provide the model ID output from the previous step:
271271

272272
```azurecli
273-
az ml manifest create --manifest-name <new manifest name> -f score_iris.py -r python -i <model ID> -s service_schema.json
273+
az ml manifest create --manifest-name <new manifest name> -f score_iris.py -r python -i <model ID> -s service_schema.json -c aml_config\conda_dependencies.yml
274274
```
275275
This command generates a manifest ID.
276276

@@ -279,7 +279,7 @@ First, register the model. Then generate the manifest, build the Docker image, a
279279
To create a Docker image, use the following command and provide the manifest ID value output from the previous step. You also can optionally include the conda dependencies by using the `-c` switch.
280280

281281
```azurecli
282-
az ml image create -n irisimage --manifest-id <manifest ID> -c aml_config\conda_dependencies.yml
282+
az ml image create -n irisimage --manifest-id <manifest ID>
283283
```
284284
This command generates a Docker image ID.
285285

0 commit comments

Comments
 (0)