# Install zoxide with Homebrew, apk, chocolatey, apt, dnf, MacPorts, Nix, pacman, scoop, winget, zypper

Shell extension to navigate your filesystem faster. Version 0.10.0 via Homebrew; verified 2026-07-04.

## Install

```sh
sudo av install brew:zoxide
```

Additional install commands:

### macOS

- Homebrew (100%):

```sh
brew install zoxide
```

  Evidence: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install zoxide
```

  Evidence: MacPorts ports tree: sysutils/zoxide/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add zoxide
```

  Evidence: Alpine Linux edge package indexes: zoxide from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install zoxide
```

  Evidence: Debian stable package indexes: zoxide from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install zoxide
```

  Evidence: Fedora Rawhide package metadata: zoxide from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#zoxide
```

  Evidence: nixpkgs package indexes: pkgs/by-name/zo/zoxide/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S zoxide
```

  Evidence: Arch Linux sync databases: zoxide from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install zoxide
```

  Evidence: openSUSE Tumbleweed package metadata: zoxide from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst

### Windows

- Chocolatey (92%):

```sh
choco install zoxide
```

  Evidence: Chocolatey community package catalog: zoxide from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='10.5272','w10privacy'

- Scoop (92%):

```sh
scoop install main/zoxide
```

  Evidence: Scoop official bucket manifest trees: bucket/zoxide.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

- winget (92%):

```sh
winget install --id ajeetdsouza.zoxide -e
```

  Evidence: Windows Package Manager source index: ajeetdsouza.zoxide from https://cdn.winget.microsoft.com/cache/source.msix

## Package facts

- **Package key:** brew:zoxide
- **Package manager:** Homebrew
- **Package manager page:** <https://formulae.brew.sh/formula/zoxide>
- **Version:** 0.10.0
- **Source summary:** Shell extension to navigate your filesystem faster
- **Homepage:** <https://github.com/ajeetdsouza/zoxide>
- **Repository:** <https://github.com/ajeetdsouza/zoxide>
- **Upstream docs:** <https://github.com/ajeetdsouza/zoxide#readme>
- **License:** MIT
- **Source archive:** <https://github.com/ajeetdsouza/zoxide/archive/refs/tags/v0.10.0.tar.gz>
- **Last updated:** 2026-07-04T16:03:51Z
- **Generated:** 2026-07-08T18:08:21+00:00

## Executables

- zoxide (cli)
- zoxide (alias)

## Build dependencies

- rust

## Install behavior

- Post-install hook: not defined
- Bottle: available on arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sonoma, x86_64_linux

## Freshness

- Page generated: 2026-07-08
- Package-manager version: 0.10.0
- Package-manager updated: 2026-07-04
- Local data: ok
- Upstream repository: https://github.com/ajeetdsouza/zoxide
- Upstream latest detected: v0.10.0 (current)
## Project history and usage

zoxide is a Rust command-line directory jumper: a smarter `cd` inspired by `z` and `autojump` that remembers frequently used directories and lets users jump to them with short fuzzy queries.

### Project history

Ajeet D'Souza created the public zoxide repository in March 2020. The README positions it as a modern successor in the directory-jump family, explicitly inspired by `z` and `autojump`, but built as a cross-shell Rust binary rather than shell-only glue.

Over time zoxide evolved from a small navigation helper into a carefully integrated shell tool. The README documents setup for Bash, Zsh, Fish, PowerShell, Nushell, POSIX shells, Elvish, Xonsh, Tcsh, and others, while the changelog shows ongoing work on completions, shell hooks, Windows behavior, symlink handling, database safety, and shell-specific edge cases.

### Adoption history

By July 2026 GitHub metadata showed more than 37,000 stars, making zoxide one of the most visible modern Rust CLIs in the shell-productivity niche. The official README lists installation through Cargo, Homebrew, MacPorts, Nix, distro packages, Winget, Scoop, Chocolatey, Termux, BSD package systems, and an install script.

Its adoption path follows the practical workstation-tool pattern: users first install it through Cargo or a shell setup script, then standardize it through OS package managers so dotfiles and new machines can depend on the same `z` command.

### How it is used

Common use is to initialize zoxide in the user's shell and replace or supplement `cd` with `z`. Examples include `z foo` to jump to the best-ranked matching directory, multi-term queries such as `z foo bar`, `z -` for the previous directory, and `zi` for interactive selection through fzf.

zoxide is not a file manager. It is a tiny behavioral database plus shell integration that makes repeated navigation cheap, especially for developers moving among many project trees.

### Why package nerds care

Package nerds care about zoxide because it is the directory-jump idea packaged in a modern, portable form: one Rust executable plus shell init snippets. It also shows how small terminal utilities earn broad package-manager coverage when they improve an everyday shell primitive without replacing the shell.

### Timeline

- 2020-03-05: The public `ajeetdsouza/zoxide` repository is created.
- 2020s: zoxide becomes available across Cargo, Homebrew, Linux distributions, BSD packages, Windows package managers, and Termux as documented by the README.
- 2024-2026: The changelog records active compatibility work for Nushell, PowerShell, Fish, Zsh, POSIX shells, Tcsh, and Windows path behavior.
- 2026-01-31: zoxide 0.9.9 is published on GitHub.

### Related projects

- `z` and `autojump` are the direct inspirations named by the README.
- fzf is the common companion for interactive `zi` selection.
- fasd and shell framework integrations such as Oh My Zsh occupy the same shell-navigation neighborhood.

### Sources

- <https://api.github.com/repos/ajeetdsouza/zoxide>
- <https://github.com/ajeetdsouza/zoxide>
- <https://github.com/ajeetdsouza/zoxide/blob/main/CHANGELOG.md>
- input.json source_facts.package-manager


## Security Notes

generalized runtime or code generation signal.

- **Geiger risk:** yellow / medium
- generalized runtime or code generation signal

## Source Database Details

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** zoxide
- **Version Scheme:** 0
- **Revision:** 0
- **Bottle Stable Root URL:** <https://ghcr.io/v2/homebrew/core>
- **Deprecated:** no
- **Disabled:** no
- **Keg Only:** no
- **URL Keys:** stable

## Other Package-Manager Records

- Debian apt - zoxide - 0.9.7-1+b1: normalized package name match | Debian stable package indexes: zoxide from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Smarter cd command for your terminal | https://github.com/ajeetdsouza/zoxide
- Nix - zoxide: normalized package name match | nixpkgs package indexes: pkgs/by-name/zo/zoxide/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - zoxide - 0.9.3-1: normalized package name match | Ubuntu 24.04 LTS package indexes: zoxide from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Smarter cd command for your terminal | https://github.com/ajeetdsouza/zoxide
- apk - zoxide - 0.9.9-r0: normalized package name match | Alpine Linux edge package indexes: zoxide from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Faster way to navigate your filesystem | https://github.com/ajeetdsouza/zoxide
- apk - zoxide-bash-completion - 0.9.9-r0: normalized package name match | Alpine Linux edge package indexes: zoxide-bash-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bash completions for zoxide | https://github.com/ajeetdsouza/zoxide
- apk - zoxide-doc - 0.9.9-r0: normalized package name match | Alpine Linux edge package indexes: zoxide-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Faster way to navigate your filesystem (documentation) | https://github.com/ajeetdsouza/zoxide
- apk - zoxide-fish-completion - 0.9.9-r0: normalized package name match | Alpine Linux edge package indexes: zoxide-fish-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Fish completions for zoxide | https://github.com/ajeetdsouza/zoxide
- apk - zoxide-zsh-completion - 0.9.9-r0: normalized package name match | Alpine Linux edge package indexes: zoxide-zsh-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Zsh completions for zoxide | https://github.com/ajeetdsouza/zoxide
- dnf - zoxide - 0.9.8-2.fc44: normalized package name match | Fedora Rawhide package metadata: zoxide from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst | Smarter cd command for your terminal | https://crates.io/crates/zoxide
- pacman - zoxide - 0.9.9-2: normalized package name match | Arch Linux sync databases: zoxide from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | A smarter cd command for your terminal | https://github.com/ajeetdsouza/zoxide
- zypper - zoxide - 0.9.9-1.3: normalized package name match | openSUSE Tumbleweed package metadata: zoxide from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst | A smarter cd command | https://github.com/ajeetdsouza/zoxide
- MacPorts - zoxide: normalized package name match | MacPorts ports tree: sysutils/zoxide/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Chocolatey - zoxide: normalized package name match | Chocolatey community package catalog: zoxide from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='10.5272','w10privacy'
- Scoop - main/zoxide: normalized package name match | Scoop official bucket manifest trees: bucket/zoxide.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1
- winget - ajeetdsouza.zoxide: normalized package name match | Windows Package Manager source index: ajeetdsouza.zoxide from https://cdn.winget.microsoft.com/cache/source.msix


## Related links

- [Source-control packages](https://www.automicvault.com/pkg/source-control-tools/) - Belongs to a source-control command family.
- [Secret-risk packages](https://www.automicvault.com/pkg/secret-risk-packages/) - Has protected-tool coverage, approval-gate, or non-low Geiger security signals.
- [Terminal utility packages](https://www.automicvault.com/pkg/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Text processing packages](https://www.automicvault.com/pkg/text-processing-tools/) - Matched text, document, or structured-data processing metadata.
- [rust](https://www.automicvault.com/pkg/brew/rust/) - Build dependency declared by Homebrew.
- [mcfly](https://www.automicvault.com/pkg/brew/mcfly/) - Shares av.db curated category or tags: cli, developer-tools, rust, shell.
- [aliae](https://www.automicvault.com/pkg/brew/aliae/) - Shares av.db curated category or tags: cli, developer-tools, shell.
- [bar](https://www.automicvault.com/pkg/brew/bar/) - Shares av.db curated category or tags: cli, developer-tools, shell.
- [checkbashisms](https://www.automicvault.com/pkg/brew/checkbashisms/) - Shares av.db curated category or tags: cli, developer-tools, shell.
- [desk](https://www.automicvault.com/pkg/brew/desk/) - Shares av.db curated category or tags: cli, developer-tools, shell.
- [fish](https://www.automicvault.com/pkg/brew/fish/) - Shares av.db curated category or tags: cli, developer-tools, shell.
- [fizsh](https://www.automicvault.com/pkg/brew/fizsh/) - Shares av.db curated category or tags: cli, developer-tools, shell.
- [ondir](https://www.automicvault.com/pkg/brew/ondir/) - Shares av.db curated category or tags: cli, developer-tools, shell.
- [jump](https://www.automicvault.com/pkg/brew/jump/) - Local package facts share a topical domain. Shared terms: cli, developer, developer-tools, faster, filesystem.
- [plz-cli](https://www.automicvault.com/pkg/brew/plz-cli/) - Both packages touch the same language runtime or ecosystem. Shared terms: cli, developer, developer-tools, rust, shell.

## Combined YAML source

View the package source record on GitHub. [combined/zoxide.yml](https://github.com/automic-vault/db/blob/main/combined/zoxide.yml)


## Sources

- Nucleus package database
- Geiger risk classifier
- package-page enrichment
- curated package history
- package version freshness
- av.db category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
