-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add guides about Linux Flutter installation
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Installing Components | ||
|
||
> This section assumes that [Flutter SDK](https://docs.flutter.dev/get-started/install) is installed on your system. | ||
To get started, you need to have [Flutter SDK](https://docs.flutter.dev/get-started/install), [Rust toolchain](<(https://www.rust-lang.org/tools/install)>), and [Protobuf compiler](https://grpc.io/docs/protoc-installation/) installed on your system. | ||
|
||
Installing Rust toolchain is very easy. Just head over to the [official installation page](https://www.rust-lang.org/tools/install) and follow the instructions. | ||
> If you're working on Linux, do not install Flutter from `snap`. Flutter from `snap` comes with its own binary linker which is fundamentally incompatible with Rust. Instead, follow the manual installation method as written in the Flutter docs. | ||
You also need to have Protobuf compiler installed on your system. For those who aren't familiar, Protobuf is a popular, language-neutral, binary serialization format for structured messages, made by Google. Installing Protobuf compiler is also easy as described in the [official docs](https://grpc.io/docs/protoc-installation/). | ||
|
||
After installation, verify your system's readiness with the following commands. Make sure you have installed all the subcomponents that Flutter suggests. If there are no issues in the output, you are good to go onto the next step! | ||
After the installation, verify your system's readiness with the following commands. Make sure you have installed all the subcomponents that Flutter suggests. If there are no issues in the output, you are good to go onto the next step! | ||
|
||
```bash | ||
rustc --version | ||
protoc --version | ||
flutter doctor | ||
``` | ||
|
||
> For those who aren't familiar, Protobuf is a popular, language-neutral, binary serialization format for structured messages, made by Google. |