Install the CLI
The Noddle Deck CLI is a Python package that runs on macOS, Linux, and WSL. Pick the install method that fits your existing Python tooling.
Requirements
- Python 3.8 or newer
- macOS, Linux, or Windows Subsystem for Linux (WSL)
- A Noddle Deck account (sign up free)
pipx (recommended)
Pipx isolates the CLI in its own virtualenv so it never clashes with your project deps.
brew install pipx # macOS# or: python -m pip install --user pipx
pipx install noddle-deck-clipip
Standard pip works fine if you don't care about isolation.
python -m pip install --user noddle-deck-cliuv
If you use uv for everything Python, install the CLI as a tool.
uv tool install noddle-deck-cliVerify the install
noddle-deck --versionYou should see the version number. If your shell can't find noddle-deck, your install method didn't add it to PATH — run pipx ensurepath (or the equivalent for your method) and reopen the terminal.
Upgrade
noddle-deck update # checks PyPI for a newer releasepipx upgrade noddle-deck-cli # applynoddle-deck update only reports the gap — it never invokes pip itself, so it stays neutral about your install method.
Uninstall
pipx uninstall noddle-deck-cli # if installed with pipxpip uninstall noddle-deck-cli # if installed with pipLocal synced content under ~/.claude/skills/noddle-deck-* and ~/.claude/commands/noddle-deck-* is not removed automatically — delete those folders if you want a clean slate.