Installation

Oxmgr supports Linux, macOS, and Windows. Pick the install method that fits your workflow.

npm / yarn

npm install -g oxmgr
# or
yarn global add oxmgr

Works on all platforms where Node.js is installed. Fastest way to get started.

Homebrew macOS / Linux

brew tap empellio/homebrew-tap
brew install oxmgr

Chocolatey Windows

choco install oxmgr -y

Scoop Windows

scoop bucket add oxmgr https://github.com/empellio/scoop-bucket
scoop install oxmgr/oxmgr

AUR Arch Linux

yay -S oxmgr-bin

APT — signed repository Debian / Ubuntu (recommended for servers)

sudo install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://vladimir-urik.github.io/OxMgr/apt/keyrings/oxmgr-archive-keyring.gpg \
  | sudo tee /etc/apt/keyrings/oxmgr-archive-keyring.gpg >/dev/null
echo "deb [signed-by=/etc/apt/keyrings/oxmgr-archive-keyring.gpg] https://vladimir-urik.github.io/OxMgr/apt stable main" \
  | sudo tee /etc/apt/sources.list.d/oxmgr.list
sudo apt update && sudo apt install oxmgr

Using the signed APT repository means you get automatic upgrades with apt upgrade.

Build from source Requires Rust toolchain

git clone https://github.com/Vladimir-Urik/OxMgr.git
cd OxMgr
cargo build --release
./target/release/oxmgr --help

Install the Rust toolchain with rustup.rs if you don't have it.

Verify install

oxmgr --help
oxmgr list

Next steps

Still have questions?

Open an issue or browse the source on GitHub.

Open an Issue ↗