Rustのインストール
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# 全てデフォルトで作成するので下記のように、フルオートでインストール出来る
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# 下記コマンドでパスを設定
$ source $HOME/.cargo/env
Cargoで必要なモジュールをインストール
$ cargo install cargo-generate
$ cargo install cargo-update
$ cargo install cargo-edit
VScodeなどによるデバッグ用に下記ツールをインストール
$ rustup component add rls rust-analysis rust-src
ツールのアップデート
$ rustup update
$ cargo install-update --all
Tauri関連のインストール
$ cargo install kauri-cli
$ npm install --save-dev @tauri-apps/cli
とりあえずこんな感じで、MacOS、Windows、Linux(Ubuntu)でやってみました。次は簡単なアプリケーションを作成してみる