Required
Dart / Flutter
To install Flutter, I found it easiest to
-
Install the flutter-bin package
-
Add yourself to the flutter usergroup
Terminal window sudo usermod -a -G flutter <username> -
Disable analytics
Terminal window flutter config --no-analytics -
Install Android Studio, using the android-studio package, for Android development.
-
Run
android-studio
to install the SDK to~/Android/Sdk
-
Open the SDK Manager, by clicking on More Actions then on SDK Manager
-
Select the tab SDK Tools
-
Install the Android SDK Command-line Tools (latest)
-
Install Google Chrome, using the google-chrome package, for Web development.
-
Set the
CHROME_EXECUTABLE
environment variable togoogle-chrome-stable
~/.config/nushell/user.nu $env.CHROME_EXECUTABLE = "google-chrome-stable"~/.config/xonsh/env.xsh $CHROME_EXECUTABLE = "google-chrome-stable" -
Make sure Flutter doesn’t cry
Terminal window flutter doctor