R Tools PPA
Important: All packages in this repository are now GPG signed. If you were a user before 2026-06-19, you have to reinstall the repository or update the keys (See section Updating the signing key below).
This is a Personal Package Archive (PPA) for distributing latest versions of Rstudio, Quarto and Positron for Linux users.
- .deb packages for Ubuntu and Debian-based distributions.
- Rstudio (amd64)
- Quarto (amd64 and arm64)
- Positron (amd64 and arm64)
- .rpm packages for Fedora and Red Hat-based distributions.
- Rstudio (x86_64)
- Positron (x86_64 and aarch64)
- Quarto (x86_64)
Package signatures
All packages in this repository are signed with the same GPG key:
https://downloads.sourceforge.net/project/r-tools-ppa/r_tools_ppa.gpg.key
- Debian/Ubuntu: APT metadata is signed; install the key before adding the repository.
- Fedora/Red Hat: RPM packages are signed; the repository file enables signature verification (
gpgcheck=1) and points to this key.dnfimports it automatically when you enable the repo.
Fedora/Red Hat Installation
To enable this repository and install the latest RStudio, Quarto, or Positron:
- Download the repository file:
sudo curl -L -o /etc/yum.repos.d/r_tools_ppa.repo \ https://sourceforge.net/projects/r-tools-ppa/files/rpm_x86_64/repo.txt/downloadOr for aarch64 architecture:
sudo curl -o /etc/yum.repos.d/r_tools_ppa.repo \ https://sourceforge.net/projects/r-tools-ppa/files/rpm_aarch64/repo.txt/downloadThe repo file enables GPG signature verification and references the signing key above.
dnfimports the key on first use. - Update & install (e.g., RStudio):
sudo dnf update sudo dnf install rstudio
Debian/Ubuntu Installation
For both amd64 and arm64 architectures:
- Download and install the signing key:
sudo curl -fsSL https://downloads.sourceforge.net/project/r-tools-ppa/r_tools_ppa.gpg.key \ | sudo gpg --dearmor -o /etc/apt/keyrings/r_tools_ppa.gpg - Add the repository:
echo "deb [arch=amd64,arm64 signed-by=/etc/apt/keyrings/r_tools_ppa.gpg] https://downloads.sourceforge.net/project/r-tools-ppa/deb stable main" | sudo tee /etc/apt/sources.list.d/r_tools_ppa.list sudo apt update - Install a package (e.g., Positron):
sudo apt install positron
Updating the signing key
If you enabled this repository before the signing key changed, re-import the key:
Debian/Ubuntu:
sudo curl -fsSL https://downloads.sourceforge.net/project/r-tools-ppa/r_tools_ppa.gpg.key \
| sudo gpg --dearmor -o /etc/apt/keyrings/r_tools_ppa.gpg
sudo apt update
Fedora/Red Hat:
sudo rpm --import https://downloads.sourceforge.net/project/r-tools-ppa/r_tools_ppa.gpg.key
sudo dnf update