Tuistのインストール
Tuist CLIは実行ファイル、動的フレームワーク、およびリソース一式(たとえばテンプレート)から構成される。ソース](https://github.com/tuist/tuist)からTuistを手動でビルドすることもできますが、、有効なインストールを保証するために以下のインストール方法のいずれかを使用することをお勧めします。
Mise
INFO
MiseはHomebrewの代替案として、異なる環境間でツールの確定的なバージョンを保証する必要があるチームや組織に推奨されます。
Tuistは以下のいずれかのコマンドでインストールできる:
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 numberHomebrewのような、一つのバージョンのツールをグローバルにインストールしてアクティベートするツールとは異なり、Miseは、グローバルまたはプロジェクトにスコープされたバージョン をアクティベートする必要があることに注意してください。これは、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 defaultHomebrew
Homebrewと公式 fomulaを使ってTuistをインストールできます:
bash
brew tap tuist/tuist
brew install --formula tuist
brew install --formula [email protected]バイナリーの真正性を確認する
証明書のチームがU6LC622NKF であるかどうかをチェックする以下のコマンドを実行することで、インストールのバイナリが当社によってビルドされたことを確認できます:
bash
curl -fsSL "https://docs.tuist.dev/verify.sh" | bash