👶

Win10でデスクトップアプリつくるtauri環境(Dドライブにいれました)

2022/04/11に公開

基本は公式みればいけるはずなんで、やってない方はコチラでトライ
https://tauri.studio/docs/getting-started/setting-up-windows

Dドライブっていうのは自分のしょぼPCのCドライブがショボいから。

Dドライブに移動する
https://qiita.com/Nemy/items/3ab1f91010ea9908d673

まずDドライブにcmdで移動します。普通にnodejsからmsi落としてダウンロードする際に、「D:\nodejs」にしておきます。

環境変数でパスを通す
https://qiita.com/shuhey/items/7ee0d25f14a997c9e285

終わった後、パスが通ってないので、上の参考に環境変数Pathに「D:\nodejs」を追記します。

立ち上げてたcmdは一旦落とします。反映されないので。

で、確認

node -v
npm -v

入ってますね。次はRustcおよびCargoPackageManagerをいれます。
3. Rustc and Cargo Package Managerの64-bit download linkを入れました。

https://tauri.studio/docs/getting-started/setting-up-windows

なすがまま。さぁその次は

npx create-tauri-app
cd first_win_app
npm run tauri dev

起動できました。

ちょっと後でもう1台WinPCの環境を構築するのでその際確認して更新するのですが、
https://tauri.studio/docs/getting-started/beginning-tutorial

cargo installとかするかもしれない。

おまけ

コマンドプロンプトの実行履歴(history)を取得する
https://atmarkit.itmedia.co.jp/ait/articles/1809/27/news035.html

Mac版
https://zenn.dev/dokokade/articles/b55e826b3e531d

Discussion