Skip to content

Instantly share code, notes, and snippets.

@idleberg
Last active April 21, 2024 22:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save idleberg/e246f7a582ac173d156c60ec23ce2af0 to your computer and use it in GitHub Desktop.
Save idleberg/e246f7a582ac173d156c60ec23ce2af0 to your computer and use it in GitHub Desktop.
Install Playdate SDK using a package manager

Install Playdate SDK

If you're like me, you want to install the Playdate SDK using a package manager. Below are some options for you.

Info Did I miss anything? Please comment below!

macOS

brew install --cask playdate-simulator

This Homebrew cask updates automatically, so you usually don't have to submit updates.

Windows

⚠️ You will still have to set the PLAYDATE_SDK_PATH environment variable and append $PLAYDATE_SDK_PATH/bin to your PATH.

winget install Panic.PlaydateSDK

Outdated SDK version? Submit an update.

# Add SDK bucket
scoop bucket add playdate-sdk https://github.com/idleberg/scoop-playdate-sdk

# Optional step: Install sudo helper to elevate PowerShell
scoop install sudo

# Install SDK
sudo scoop install playdate-sdk

This Scoop bucket updates automatically, so you usually don't have to submit updates.

Linux

pacman -S playdate-sdk

Outdated SDK version? Submit an update.

yay -S playdate-sdk

Outdated SDK version? Submit an update.

No official package yet, but an outdated gist that might serve as a starter.

@boozook
Copy link

boozook commented Sep 27, 2023

On the GitHub CI (actions, workflows) you can use "get-playdate-sdk" action.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment