Skip to main content
This page shows how a Team admin or Registry admin can delete a registry. Admins can programmatically or interactively delete a registry with the W&B Python SDK or the W&B UI. Permissions to delete a registry depend on your role:
  • A Team admin can delete any registry in the organization.
  • A Registry admin can delete a registry that they created.
Deleting a registry also deletes collections that belong to that registry, but doesn’t delete artifacts linked to the registry. Such artifacts remain in the original project that they were logged to.
Use the wandb API’s delete() method to delete a registry programmatically. The following example illustrates how to:
  1. Fetch the registry you want to delete with api.registry().
  2. Call the delete() method on the returned registry object to delete the registry.
Replace [REGISTRY-NAME] with the name of your registry.