Appearance
Install Tuist
The Tuist CLI consists of an executable, dynamic frameworks, and a set of resources (for example, templates). Although you could manually build Tuist from the sources, we recommend using one of the following installation methods to ensure a valid installation.
Mise
INFO
Mise is a recommended alternative to Homebrew if you are a team or organization that needs to ensure deterministic versions of tools across different environments.
You can install Tuist through any of the following commands:
bash
mise install tuist # Install the current version specified in .tool-versions/.mise.toml
mise install [email protected] # Install a specific version number
mise install tuist@3 # Install a fuzzy version number
Note that unlike tools like Homebrew, which install and activate a single version of the tool globally, Mise requires the activation of a version either globally or scoped to a project. This is done by running mise use
:
bash
mise use [email protected] # Use tuist-x.y.z in the current project
mise use tuist@latest # Use the latest tuist in the current directory
mise use -g [email protected] # Use tuist-x.y.z as the global default
mise use -g tuist@system # Use the system's tuist as the global default
Homebrew
You can install Tuist using Homebrew and our formulas:
bash
brew tap tuist/tuist
brew install --formula tuist
brew install --formula [email protected]
VERIFYING THE AUTHENTICITY OF THE BINARIES
bash
curl -fsSL "https://docs.tuist.dev/verify.sh" | bash