Skip to content

Instantly share code, notes, and snippets.

@oscartbeaumont
Created February 7, 2023 06:37
Show Gist options
  • Save oscartbeaumont/883b3a1a566dd479ac5e1bf157c69235 to your computer and use it in GitHub Desktop.
Save oscartbeaumont/883b3a1a566dd479ac5e1bf157c69235 to your computer and use it in GitHub Desktop.
Linux basic developer environment for Tauri/Wry dev
#!/bin/bash
sudo apt-get update
sudo apt-get -y install git curl
sudo snap install code --classic
sudo snap install node --classic
curl https://sh.rustup.rs -sSf | sh -s -- -y
npm -g i pnpm
sudo apt-get -y install libwebkit2gtk-4.0-dev \
build-essential \
curl \
wget \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
# This requires the universe repo to be enabled
sudo apt-get -y install libwebkit2gtk-4.1-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment