Skip to content

Installation

Currently only linux is officially supported. Precompiled binary is provided on Github and an AUR package is available for Arch. To build rmpc yourself you will need to have rust toolchain installed. More installation methods will come in the future.

Steps

  1. Install rmpc using one of the provided methods

  2. Setup your config file

  3. Run rmpc

    rmpc
    # or if you want to check out the CLI
    rmpc --help

Packaging status

Packaging status

Installation methods

Arch Linux

pacman -S rmpc
# or
yay -S rmpc-git

openSUSE Tumbleweed

zypper install rmpc

NixOS

Add rmpc (available in nixos-unstable) to your systemPackages and rebuild.

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
rmpc
];
}

Precompiled binaries

By downloading a precompiled binary from github releases page. Then untar the archive, set execute persmission if needed and run rmpc.

Using cargo

# compile the latest version from source
cargo install rmpc --locked
# or download precompiled binary with cargo binstall
cargo binstall rmpc
# or compile the latest work in progress version from git
cargo install --git https://github.com/mierak/rmpc --locked