Forrest logo
back to the pio tool

pio-package:tldr:76ac2

pio-package: Remove a specific version of a published package from the registry.
$ pio package unpublish ${package_name}@${version}
try on your machine

This command is used in the PlatformIO, an open-source ecosystem for embedded development, to unpublish a previously published package from the PlatformIO Registry.

Here's a breakdown of the command syntax:

  • pio package unpublish: This is the main command to unpublish a package.
  • ${package_name}: This is a placeholder that should be replaced with the name of the package you want to unpublish. It refers to the specific package you want to remove from the PlatformIO Registry.
  • @${version}: This placeholder represents the version of the package you want to unpublish. It should be replaced with the actual version number of the package.

By running this command, the specified package and version will be unpublished from the PlatformIO Registry, effectively removing it from the available packages for others to use.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pio tool