Deleting a pipeline

Learn how to delete pipelines.

In order to delete a pipeline, you can either use the CLI or the Python SDK:

zenml pipeline delete <PIPELINE_NAME>

Deleting a pipeline does not automatically delete any of its associated runs or artifacts.

Delete a pipeline run

To delete a pipeline run, you can use the following CLI command or the client:

zenml pipeline runs delete <RUN_NAME_OR_ID>

Last updated