The remove
command in the PxPlus Package Manager is used to delete a specified package from a project. This command deletes the package from the disk, lock file, and packages file if it's present in them.
remove [package_name]
The remove
command allows you to easily delete an installed package from your project. When you run this command, it checks if the package is on the disk, in the lock file, and in the packages file. If the package is found, it is removed from all these locations.
To remove a specific package:
remove mypackage
To remove another package:
remove anotherpackage
If the package is removed successfully, a message will let you know that the package removal is complete. If there's an issue, an error message will be shown.
CommandNoParametersException
will be raised.PackagesFileNotInitializedException
will be triggered.PackageNotInstalledException
will be raised.For more details about the PxPlus Package Manager commands, refer to the main documentation or use the help
command.