Last active
August 27, 2024 10:36
-
-
Save cyrus01337/a5c2553e79bd9cb6b5bea074546d3b4a to your computer and use it in GitHub Desktop.
Install Devpod CLI for Fedora 39/40
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
#!/usr/bin/env bash | |
# Install dependencies | |
sudo dnf install -y fontconfig fribidi fuse fuse-libs gdk-pixbuf2-devel gtk3-devel harfbuzz libXdmcp-devel \ | |
libappindicator-devel libbsd-devel libglvnd-egl libglvnd-glx libglvnd-opengl libthai libwmf-devel \ | |
rust-glib-sys-devel rust-openssl-sys-devel | |
# ...then install the devpod cli (ripped from their docs) | |
# | |
# See https://devpod.sh/docs/getting-started/install | |
curl -L -o devpod "https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64" && \ | |
sudo install -c -m 0755 devpod /usr/local/bin && rm -f devpod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment