Rocket.Chat does not support for connections from cloud services and official mobile/desktop apps to workspaces running legacy versions outside our support window. Users on unsupported legacy servers are advised to upgrade to the latest Rocket.Chat version to ensure continued access to cloud, mobile, and desktop applications. Each Rocket.Chat version is supported for six months post-release.
This guide provides instructions for installing and updating the Rocket.Chat client applications on desktop and mobile devices. Whether you're using Windows, macOS, Linux, iOS, or Android, follow the instructions below to set up the app on your preferred platform and start accessing your workspace. Before you install, check the minimum requirements for client apps to access Rocket.Chat.
For desktop communication, Rocket.Chat offers robust applications that seamlessly integrate with your Windows, MacOS, or Linux environment.
Windows: Download from the Windows Store.
macOS: Install from the Mac App Store.
Linux (Ubuntu): Install our Snap using the command below:
sudo snap install rocketchat-desktopThe advantage of Snaps is that they automatically update, eliminating the need for manual client updates. They are also compatible with other platforms.
To download the desktop app’s source files for manual installation, visit the Desktop app releases repository and download your preferred release file from the Assets section.
Visit the Silent installation for desktop apps guide to install Rocket.Chat desktop app silently on different operating systems.
To ensure that you stay connected, no matter where you are, Rocket.Chat offers dedicated applications for iOS and Android devices.
Android | Apple |
|---|---|
Beta versions
Beta versions of our apps are available on Google Play beta and TestFlight. Help us test new features!
Android | Apple |
|---|---|
Experimental versions
Our experimental mobile apps are built using identical technologies and codebases as the official version. These apps serve as a platform for us to test new features and gather user feedback. Only the features that prove stable are incorporated into the official version.
Android | Apple |
|---|---|
iOS version isn't available on App Store anymore. |
See the Minimum Requirements for Client Apps document for the list of supported software.
See how to Configure Push Notifications for mobile devices.
After installation, see Access Your Workspace to continue with the next steps.
Update desktop & mobile apps
Automatic updates
If you installed the Rocket.Chat desktop app from the Mac App Store or the Windows Store, updates are applied automatically by your operating system.
If you downloaded the app from the Desktop app releases repository using a
.exefile for Windows,.dmgor.zipfor macOS, or.AppImagefor Linux, the app includes a built-in updater. When a new version is available, you'll see an in-app prompt with the option to:Install the update immediately
Be reminded later
Skip the update
If you installed the app using Snap, updates are applied automatically by the Snap system.
Manual updates
If you installed the app using a .deb, .rpm, or .tar.gz package, you need to update it manually using your system's package manager or by downloading the latest version from GitHub releases.
To update the Rocket.Chat mobile app, go to the App Store (iOS) or Play Store (Android). Each platform handles updates differently, so you can check your device settings if the app hasn't updated automatically.
Silent installation for desktop app
For large-scale enterprises, you can install Rocket.Chat desktop app silently in the background without displaying any windows, progress bars, or pop-up prompts.
Before proceeding, confirm that your target environment meets the minimum requirements below:
Platform | Installer types | Minimum OS version | Architecture | Required disk space |
|---|---|---|---|---|
Windows | NSIS (.exe), MSI (.msi) | Windows 10 or later | x64, ia32, arm64 | ~200 MB |
macOS | PKG (.pkg) | macOS 10.15 (Catalina) or later | x64, arm64 (M1/M2) | ~250 MB |
Linux | DEB, RPM, AppImage, Snap, Flatpak | Ubuntu 20.04 / RHEL 8 or later | x64, arm64 | ~200 MB |
With the requirements confirmed, you can proceed with the installation. Select the platform that matches your OS and follow the corresponding instruction:
Silent installation for Rocket.Chat desktop app on Windows can be done using the NSIS or MSI installer.
NSIS installer (.exe)
The NSIS installer is the recommended method for Windows installations. It supports full silent installation with various customizable options.
To install Rocket.Chat desktop app using the NSIS installer:
Download the .exe installer file asset for your preferred release from the Desktop app releases repository (for example, rocketchat-4.12.0-win.exe).
Go to your CMD or Powershell and navigate to the directory that has the .exe file.
Use the
/Scommand to install the desktop app silently for the current user :rocketchat-<version>-win.exe /SFor example,
rocketchat-4.12.0-win.exe /S.After it’s executed, Rocket.Chat desktop app is fully available on your system.
To customize your installation, you can explore any of the following options:
Flag | Description | Example |
|---|---|---|
| Install for all users on the system. It requires administrator privileges. | |
| Install for only the current user. This is the default silent install behaviour. | |
| Disable automatic updates for the desktop app after the installation. | |
| Install to a custom directory. The | |
MSI installer (.msi)
The MSI installer is ideal for enterprise deployments using Group Policy, SCCM, Intune, or other deployment tools.
To install Rocket.Chat desktop app using the MSI installer:
Download the .msi installer file asset for your preferred release from the Desktop app releases repository (for example, rocketchat-4.12.0-win-x64.msi).
Go to your CMD or Powershell and navigate to the directory that has the .msi file.
Use the
/Scommand to install the desktop app silently for the current user :msiexec /i rocketchat-<version>-win-x64.msi /quietFor example,
msiexec /i rocketchat-4.12.0-win-x64.msi/quiet.After it’s executed, Rocket.Chat desktop app is fully available on your system.
To uninstall the Rocket.Chat desktop app:
msiexec /x rocketchat-<version>-win-x64.msi /quietSilent installation for Rocket.Chat desktop app on macOS can be done using the PKG installer.
PKG installer (.pkg)
The PKG installer supports silent installation using the macOS installer command.
To install Rocket.Chat desktop app using the PKG installer:
Download the .pkg installer file asset for your preferred release from the Desktop app releases repository (for example, rocketchat-4.12.0-mac.pkg).
Go to your terminal and run this command:
sudo installer -pkg <path-to-pkg> -target <volume>sudo: Runs the command with administrator privileges-pkg <path-to-pkg>: Specifies the pkg package you want to install-target <volume>: Specifies the target destination for the installation. Use/to specify the main disk as the target.
For example, to install the desktop app to the main disk:
sudo installer -pkg rocketchat-4.12.0-mac.pkg -target /After it’s executed, Rocket.Chat desktop app is fully available on your system.
To customize your installation, you can explore any of the following options:
Flag | Description | Example |
|---|---|---|
| Get real-time feedback during the installation process as the package is executed. | |
| Get logs from the installation proccess and save to a file. It’s useful for debggin | |
| By default, macOS rejects any package that isn't signed by a recognized developer or has an expired security certificate. Use this flag to bypass those checks if you’re certain that the package is safe. | |
Ubuntu/Debian (.deb)
To install Rocket.Chat desktop app silently on Ubuntu or Debian devices:
Download the .deb installer file asset for your preferred release from the Desktop app releases repository (for example, rocketchat-4.12.0-linux-amd64.deb).
For basic installation, run:
sudo dpkg -i rocketchat-<version>-linux-amd64.debTo install using apt, run:
sudo apt install ./rocketchat-<version>-linux-amd64.deb -yFor non-interactive installation:
export DEBIAN_FRONTEND=noninteractive sudo apt install ./rocketchat-4.11.1-linux-amd64.deb -yFor silent uninstallation:
sudo apt remove rocketchat-desktop -y sudo apt purge rocketchat-desktop -y # To also remove configuration