Created
February 7, 2023 06:37
-
-
Save oscartbeaumont/883b3a1a566dd479ac5e1bf157c69235 to your computer and use it in GitHub Desktop.
Linux basic developer environment for Tauri/Wry dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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