How to Install RStudio IDE on Fedora 36 / Fedora 35
RStudio IDE provides a software development environment that enables you to run R commands, inspect variables, visualize output, and manage your project files.
RStudio makes it easier to write Python, Shell, and SQL scripts with syntax highlighting, code completion, and smart indentation.
In this post, we will see how to install RStudio IDE on Fedora 36 / Fedora 35.
Install R on Fedora 36
RStudio IDE requires R 3.0.1 or later. So, use the below command to install the R base package on your system.
sudo dnf install -y R
After the installation R package, run the below command to get the R version.
R --version
Output:
R version 4.1.3 (2022-03-10) -- "One Push-Up"
Copyright (C) 2022 The R Foundation for Statistical Computing
Platform: x86_64-redhat-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under the terms of the
GNU General Public License versions 2 or 3.
For more information about these matters see
https://www.gnu.org/licenses/.
Additionally, you may want to install the automatically tuned Atlas or the multi-threaded OpenBlas library to get higher performance for linear algebra operations.
sudo dnf install -y atlas
OR
sudo dnf install -y openblas
Install RStudio IDE on Fedora 36
RStudio is available in the Fedora repository, and you can install it with the dnf
command.
sudo dnf install -y rstudio-desktop
Wait for the installation to complete.
Launch RStudio IDE
After the installation of RStudio, you can start it by going to Activities >> search for RStudio or by running the rstudio
command in the terminal.
RStudio is running on Fedora 36.

Conclusion
That’s All. I hope you have learned how to install RStudio IDE on Fedora 36 / Fedora 35.