Search⌘ K
AI Features

Install GetX, GetStorage, and Get CLI

Explore how to install GetX, GetStorage, and Get CLI packages in Flutter projects through manual addition in pubspec.yaml and automatic terminal commands. Understand their usage and setup to prepare your environment for building applications with the GetX ecosystem.

GetX installation

There are two ways to install GetX.

Manual

  1. Head over to https://pub.dev/packages/get.

  2. Check the latest version and manually add get as a dependency in the project’s pubspec.yaml file, like this:

YAML
dependencies:
get: ^4.6.6 # use latest version
...