Skip to content

Instantly share code, notes, and snippets.

@cyrus01337
Last active August 27, 2024 10:36
Show Gist options
  • Save cyrus01337/a5c2553e79bd9cb6b5bea074546d3b4a to your computer and use it in GitHub Desktop.
Save cyrus01337/a5c2553e79bd9cb6b5bea074546d3b4a to your computer and use it in GitHub Desktop.
Install Devpod CLI for Fedora 39/40
#!/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