January 2020
Intermediate to advanced
368 pages
12h 45m
English
Installing Flutter on your machine requires you to go to the Flutter web page to download a zip file of the SDK: https://flutter.dev/get-started/install/. From there, you can follow the instructions provided as they’re extremely detailed. I’ll provide the exact steps next, if you don’t care about the details:
$ cd ~ $ unzip ~/Downloads/flutter_macos_v0.9.4-beta.zip
$ export PATH=`pwd`/flutter/bin:$PATH
$ cd ~ $ nano .bash_profile
$ export PATH=$HOME/flutter/bin:$PATH ...
Read now
Unlock full access