Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Sep 12, 2024
1 parent f450f66 commit 3179170
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion documentation/docs/installing-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@ To get started, you need to have [Flutter SDK](https://docs.flutter.dev/get-star

[^1]: If you're working on Linux, do not install Flutter from `snap`. Flutter from `snap` comes with its own binary linker called `ld`, which is fundamentally incompatible with Rust. Instead, follow the manual installation method as written in the Flutter docs.

Once you're done with the installations, 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!
Once the installations are complete, verify your system's readiness with the following commands:

```bash title="CLI"
rustc --version
flutter doctor
```

Additionally, check that the native toolchains are fully set up:

```
dart pub global activate native_doctor
dart pub global run native_doctor
```

Ensure all suggested subcomponents are installed. If no issues appear in the output, you’re ready to move on to the next step!

0 comments on commit 3179170

Please sign in to comment.