HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pio update — Update installed PlatformIO Core packages, development platforms, and global libraries. More informa

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandupdateclicoreplatformiopio updateinstalledpackages

Problem

How to use the pio update command: Update installed PlatformIO Core packages, development platforms, and global libraries. More information: <https://docs.platformio.org/en/latest/core/userguide/cmd_update.html>.

Solution

pio update — Update installed PlatformIO Core packages, development platforms, and global libraries. More information: <https://docs.platformio.org/en/latest/core/userguide/cmd_update.html>.

Perform a full update of all packages, development platforms, and global libraries:
pio update


Update core packages only (skips platforms and libraries):
pio update --core-packages


Check for new versions of packages, platforms, and libraries but do not actually update them:
pio update --dry-run

Code Snippets

Perform a full update of all packages, development platforms, and global libraries

pio update

Update core packages only (skips platforms and libraries)

pio update --core-packages

Check for new versions of packages, platforms, and libraries but do not actually update them

pio update --dry-run

Context

tldr-pages: common/pio update

Revisions (0)

No revisions yet.