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:
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
:
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:
brew tap tuist/tuist
brew install --formula tuist
brew install --formula [email protected]
VERIFYING THE AUTHENTICITY OF THE BINARIES
You can verify that your installation's binaries have been built by us by running the following command, which checks if the certificate's team is U6LC622NKF
:
curl -fsSL "https://docs.tuist.dev/verify.sh" | bash