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 with one of the following methods

    Arch Linux

    yay -S rmpc-git

    NixOS

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

    1
    { pkgs, ... }:
    2
    3
    {
    4
    environment.systemPackages = with pkgs; [
    5
    rmpc
    6
    ];
    7
    }

    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
  2. Setup your config file

  3. Run rmpc

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