-
Installer Tauri sur Linux Mint
Prérequis
Dépendances
sudo apt update sudo apt install libwebkit2gtk-4.0-dev build-essential curl wget file \ libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
Rust
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
Voici le script téléchargé : rustup.sh
rustup installs the latest stable version of Rust. Make sure to restart your Terminal for the changes to take effect.
rustup update
On vérifie que Rust est bien installé :
rustc --version rustc x.y.z (abcabcabc yyyy-mm-dd)
Node.js et npm
Aller à Node.js website, download the Long Term Support (LTS) version and install it.
Check if Node was succesfully installed by running:
node -v v20.10.0 npm -v 10.2.3
Installation de Tauri
sh <(curl https://create.tauri.app/sh)
—