Requirements & Setup
Flutter Installation
-
Flutter requires git which can be installed at https://git-scm.com/download/win
-
Install Puro with the following command:
Terminal window Invoke-WebRequest -Uri "https://puro.dev/builds/1.4.8/windows-x64/puro.exe" -OutFile "$env:temp\puro.exe"; &"$env:temp\puro.exe" install-puro --promote -
After installing Puro reload your shell and make sure the
puro
command is accessible. -
Initialize Puro with the latest stable Flutter version:
Terminal window puro flutter -
Now the commands
flutter
anddart
should be accessible in your shell. You are all set up with the latest stable Flutter and Dart version! For more infos check out https://puro.dev/.
-
Flutter requires git which can be installed with Homebrew for macOS:
Terminal window brew install git -
Install Puro with the following command:
Terminal window curl -o- https://puro.dev/install.sh | PURO_VERSION="1.4.8" bash -
After installing Puro reload your shell and make sure the
puro
command is accessible. -
Initialize Puro with the latest stable Flutter version:
Terminal window puro flutter -
Now the commands
flutter
anddart
should be accessible in your shell. You are all set up with the latest stable Flutter and Dart version! For more infos check out https://puro.dev/.
-
Flutter requires git which can be installed with most package managers e.g. apt:
Terminal window sudo apt install git -
Install Puro with the following command:
Terminal window curl -o- https://puro.dev/install.sh | PURO_VERSION="1.4.8" bash -
After installing Puro reload your shell and make sure the
puro
command is accessible. -
Initialize Puro with the latest stable Flutter version:
Terminal window puro flutter -
Now the commands
flutter
anddart
should be accessible in your shell. You are all set up with the latest stable Flutter and Dart version! For more infos check out https://puro.dev/.
TinyGO Installation
-
It is recommended to use Scoop to install TinyGo and it’s dependencies on Windows:
Terminal window scoop install goFollowed by:
Terminal window scoop install tinygo
- Use Homebrew to install TinyGo:
Terminal window brew tap tinygo-org/toolsbrew install tinygo
- The Linux installation can change depending on the latest TinyGo version and the used distro, check out the installation guide here.