Deleting a pipeline
Learn how to delete pipelines.
In order to delete a pipeline, you can either use the CLI or the Python SDK:
Deleting a pipeline does not automatically delete any of its associated runs or artifacts.
If you want to delete multiple pipelines at once, you might find the Python SDK preferable. If you have pipelines with the same prefix, you will need to pass in the id
of each pipeline separately so ZenML is able to identify them. In this case, you could use a script like the following:
Delete a pipeline run
To delete a pipeline run, you can use the following CLI command or the client:
Last updated