Public distribution channel for Pytxo CLI and Pytxo Desktop installers.
The main Pytxo-dev/pytxo monorepo is private. This repository is public and hosts:
- Prebuilt CLI binaries (
pytxo-linux-x64,pytxo-darwin-arm64, …) - Pytxo Desktop installers (
pytxo-desktop-*.msi/.dmg/.AppImage) and signed updater artifacts (*.sig,latest.json) when release signing is configured - Install scripts (
install.sh,install.ps1) for the CLI - Checksums (
SHA256SUMS.txt)
Desktop (recommended for operators):pytxo.com/download
| Platform | Asset |
|---|---|
| Windows x64 | pytxo-desktop-windows-x64.msi |
| macOS Apple Silicon | pytxo-desktop-darwin-arm64.dmg |
| macOS Intel | pytxo-desktop-darwin-x64.dmg |
| Linux x64 | pytxo-desktop-linux-x64.AppImage |
Releases before v0.5.0 used the legacy pytxo-reality-deck-* asset prefix.
For v1.0.0, Windows x64 has fresh CLI, MSI, and NSIS builds. The macOS and Linux CLI asset names are compatibility mirrors of the verified v0.13.0 binaries while hosted multi-OS builds are unavailable. No v1 macOS or Linux Desktop installer is published.
CLI via npm:
npm i -g pytxo
pytxo doctorCLI install script (macOS / Linux):
curl -fsSL https://raw.githubusercontent.com/Pytxo-dev/pytxo-releases/main/install.sh | bashWindows CLI (PowerShell):
irm https://raw.githubusercontent.com/Pytxo-dev/pytxo-releases/main/install.ps1 | iexPin a CLI version:
PYTXO_VERSION=v1.0.0 curl -fsSL https://raw.githubusercontent.com/Pytxo-dev/pytxo-releases/main/install.sh | bashCreate a public GitHub repo:
Pytxo-dev/pytxo-releases.Push this directory as
main:cd distribution/pytxo-releases git init git remote add origin git@github.com:Pytxo-dev/pytxo-releases.git git add . git commit -m "Initial public distribution channel" git push -u origin main
In the private
pytxorepo, add GitHub secretPYTXO_RELEASES_TOKEN(PAT or GitHub App) withcontents: writeon pytxo-releases.Tag a release in
pytxo(git tag v1.0.0 && git push origin v1.0.0), or run Actions → Release / Desktop release. CI mirrors CLI + Desktop installers to this repo’s GitHub Release.
| Path | Purpose |
|---|---|
install.sh | macOS / Linux CLI installer |
install.ps1 | Windows CLI installer |
| Releases | Tagged v* with CLI binaries + Desktop installers |