pkgx
Run Anything
File Explorer
Download Latest Version (.zip)- agent-boundary-check.yml
- cd.brew.yml
- cd.crates.yml
- cd.docker.yml
- cd.vx.yml
- cd.www.yml
- cd.yml
- ci.ca-cert.yml
- ci.docker.yml
- ci.md.yml
- ci.yml
- quality-gate.yml
- dependabot.yml
- markdownlint.yml
- pull_request_template.md
- main.rs
- mod.rs
- sync.rs
- args.rs
- dump.rs
- execve.rs
- help.rs
- main.rs
- query.rs
- resolve.rs
- spinner.rs
- which.rs
- x.rs
- Cargo.toml
- README.md
- hydrate.rs
- mod.rs
- amazon_root_ca1.pem
- cellar.rs
- client.rs
- config.rs
- env.rs
- hydrate.rs
- install.rs
- install_multi.rs
- inventory.rs
- lib.rs
- pantry.rs
- pantry_db.rs
- platform_case_aware_env_key.rs
- resolve.rs
- sync.rs
- types.rs
- utils.rs
- build.rs
- Cargo.toml
- Dockerfile.archlinux
- Dockerfile.busybox
- Dockerfile.debian
- Dockerfile.slim
- Dockerfile.ubuntu
- c++.md
- conceptual-overview.md
- pantry-api.md
- pantry.md
- faq.md
- installing-pkgx.md
- pkgx.md
- README.md
- scripting.md
- SUMMARY.md
- find-orphaned-docker-hub-images.py
- publish-release.sh
- .envrc
- .gitbook.yaml
- .gitignore
- AGENTS.md
- Cargo.lock
- Cargo.toml
- LICENSE.txt
- README.md
- tea.yaml
# Installation Guide
git clone https://github.com/pkgxdev/pkgx
Downloads the entire project code from GitHub to your computer.
cd pkgx
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Homebrew A package manager for macOS/Linux.
brew install pkgx || curl https://pkgx.sh | sh
Downloads and runs the official install script in one line β this handles the full setup automatically.
irm https://pkgx.sh | iex
Downloads and runs the official install script via PowerShell β this handles the full setup automatically.
curl https://pkgx.sh | sh
Downloads and runs the official install script in one line β this handles the full setup automatically.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
$ pkgx docker run -it pkgxdev/pkgx
Runs the built image as an actual container.
(docker) $ pkgx node@16
Type this command into your terminal and run it.
$ docker run pkgxdev/pkgx node@21.1 --version
Runs the built image as an actual container.
Pulled directly from this repo's README.
4. Rust
Medium- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
+cargo +rust
Type this command into your terminal and run it.
Cargo.toml src/
Type this command into your terminal and run it.
my-rust-proj $ cargo build
Compiles the Rust project.
command not found: cargo
Type this command into your terminal and run it.
+rust +cargo
Type this command into your terminal and run it.
Pulled directly from this repo's README.
