A simple packages tool for loading and unloading packages to your Raspberry Pi (supported model)
Use this command to install the packages tool onto your Pi:
git clone https://github.com/Raspberry-Pi-Software/packages-tool && cd packages-tool && sudo bash install;Use this command to remove the packages tool from your Pi:
cd packages-tool && sudo bash uninstall;The packages tool provides APT-like functionality for managing Raspberry Pi Software packages:
rpisft [command] [package]install <package>- Install a package from the Raspberry Pi Software repositoryadd <package>- Alias for installuninstall <package>- Uninstall an installed packageremove <package>- Alias for uninstalldelete <package>- Alias for uninstallupdate- Update the package list from GitHubupgrade- Upgrade all installed packagesforce-upgrade- Force upgrade all packages (skips pre-uninstall scripts)list- List all installed packagessearch <term>- Search for available packages matching the term
# Install a package
rpisft install device-manager
# Update package list
rpisft update
# List installed packages
rpisft list
# Search for packages
rpisft search gpio
# Upgrade all packages
rpisft upgrade
# Uninstall a package
rpisft uninstall device-managerThe tool automatically fetches packages from the Raspberry-Pi-Software organization on GitHub. Use rpisft update to see the current list of available packages.