-
git clone
this repository into a folder of your choice -
Add '/path/to/arduino-cli/folder' to your PATH environment variable
-
Reload shell configuration or reboot And you’re done, now let’s see how to use the CLI.
A general call is arduino [COMMAND] [options]
To see the full list of commands, call arduino help [COMMAND]
, arduino [COMMAND] -h` or arduino [COMMAND] --help
To contribute to this project:
-
git clone
this repository -
Create a new branch with the name
feature-to-implement
orbug-to-fix
-
Code your contribution and push to your branch
-
Ask a Pull Request
$ arduino lib search | tr "\n" " " | xargs arduino lib install
Same trick can be used on cores as well:
$ arduino core search | tr "\n" " " | xargs arduino core install
And with the download
command:
$ arduino lib search | tr "\n" " " | xargs arduino lib download
$ arduino core search | tr "\n" " " | xargs arduino core download