1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-15 20:35:29 +03:00

[DOC] add curl to base dependencies in generic linux development guide (#5794)

This commit is contained in:
stronnag 2020-05-30 16:26:23 +01:00 committed by GitHub
parent fa264a57e2
commit ea853f29b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,17 +24,17 @@ In addition to a cross-compiler, it is necessary to install some other tools:
### Ubuntu / Debian
```
$ sudo apt install gcc git make ruby
$ sudo apt install gcc git make ruby curl
```
### Fedora
```
$ sudo dnf install gcc git make ruby
$ sudo dnf install gcc git make ruby curl
```
### Arch
```
$ sudo pacman -S gcc git make ruby
$ sudo pacman -S gcc git make ruby curl
```
Once these prerequisites are installed, we can clone the repository to provide a local instance of the iNav source code.
@ -140,4 +140,3 @@ $ make TARGET=<TARGET>
## Advanced Usage
For more advanced development information and `git` usage, please refer to the [development guide](https://github.com/iNavFlight/inav/blob/master/docs/development/Development.md).