Back to Mattermost

Redhat

docs/develop/contribute/more-info/desktop/developer-setup/redhat.md

11.10.0689 B
Original Source

NOTE: We don't officially support Fedora/Red Hat/CentOS Linux for use with the Mattermost Desktop App. The provided guide is unofficial.

  1. Open Terminal

  2. Install NodeJS via nvm:

    sh
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
    nvm install --lts
    
  3. Install other dependencies:

    Linux requires the X11 developement libraries and libpng to build native Node modules.

    sh
    sudo yum install git python3 g++ libX11-devel libXtst-devel libpng-devel
    

Notes

  • To build RPMs, you need rpmbuild:

    sh
    sudo dnf install rpm-build