pkgx/docs
Ask or search…
K
Links
Comment on page

pkgx & Terminals

Getting Started

Installing with brew is most straight forward:
brew install pkgxdev/made/pkgx

Other Ways to Install

  1. 1.
    After brew our installer is easiest:
curl -fsS https://pkgx.sh | sh
Wanna read that script before you run it? github.com/pkgxdev/setup/installer.sh
  1. 2.
    pkgx is a standalone binary, so (if you want) you can just download it directly:
# download it to `./pkgx`
curl -o ./pkgx --compressed -f --proto '=https' https://pkgx.sh/$(uname)/$(uname -m)
# install it to `/usr/local/bin/pkgx`
sudo install -m 755 pkgx /usr/local/bin
# check it works
pkgx --help
For your convenience we provide a .tgz so you can one-liner that:
curl -Ssf https://pkgx.sh/$(uname)/$(uname -m).tgz | sudo tar xz -C /usr/local/bin
  1. 3.
    You can also download straight from GitHub Releases.
If you download manually you’ll need to move the binary somewhere in your PATH.
Last modified 2mo ago