Will R studio Desktop run on windows server 2022?

Hello to everyone,

Will The open source R Studio Desktop run on Windows Server 2022 ?

Thx

I'm pretty sure it will.

We had RStudio desktop installed on an earlier version of Windows Server (but didn't end up using it as it wasn't required on that server).

Thanks Martin,

I also read the positive answer for W Server 2019 here:

But I would like a confirmation from a Posit person if possible.

Cheers

Hello everyone,

TL;DR
R and Rstudio run fine, out of the box, on Windows Server 2022.

The long story:
The issue we were having:
a) in a proxyfied network environment
b) and even though we did modify "internet options --> connections --> LAN settings" accordingly
c) we couldn't install any package because all repositories were unreachable.

What Solved the issue permanently:
create 2 system variables (with the same URL:PORT as in "internet options")

variable: http_proxy
value: http://YourProxyURL:YourProxyPort

variable: https_proxy
value: http://YourProxyURL:YourProxyPort

Hope this helps,
cheers and thanks for all this work.

PS.
what did solved, but in a not sustainable way, the unreachable repository issue was to enter in the Rstudio shell, those 2 commands:
Sys.setenv(http_proxy = "http://YourProxyURL:YourProxyPort")
Sys.setenv(https_proxy = "http://YourProxyURL:YourProxyPort")

Hello everyone,

to conclude on this SOLVED issue and for the sake of it,
the versions of OS and Soft:


Windows Server 2022
Version 21h2 (OS Build 20348.2582)

R version 4.4.1 (2024-06-14 ucrt) -- "Race for Your Life"
Platform: x86_64-w64-mingw32/x64

RStudio 2024.04.2+764 "Chocolate Cosmos" Release (e4392fc9ddc21961fd1d0efd47484b43f07a4177, 2024-06-05) for windows
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) RStudio/2024.04.2+764 Chrome/120.0.6099.291 Electron/28.3.1 Safari/537.36, Quarto 1.4.555

Cheers

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.