forked from tldr-pages/tldr
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20b4915
commit 39c6aa9
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# pio lib | ||
|
||
> Manage PlatformIO libraries. | ||
> More information: <https://docs.platformio.org/en/latest/core/userguide/lib/>. | ||
- List installed libraries: | ||
|
||
`pio lib list` | ||
|
||
- List built-in libraries based on installed development platforms and their frameworks: | ||
|
||
`pio lib builtin` | ||
|
||
- Search for existing libraries: | ||
|
||
`pio lib search {{keyword}}` | ||
|
||
- Show details about a library: | ||
|
||
`pio lib show {{library}}` | ||
|
||
- Install a library: | ||
|
||
`pio lib install {{library}}` | ||
|
||
- Update installed libraries: | ||
|
||
`pio lib update` | ||
|
||
- Uninstall a library: | ||
|
||
`pio lib uninstall {{library}}` | ||
|
||
- Show PlatformIO library registry statistics: | ||
|
||
`pio lib stats` |