Rstudio doesn't open

Hello everyone,
I was trying to download both R and Rstudio because of my statistics studies. So I downloaded the R language with sudo pacman -S r which worked and then I downloaded Rstudio with yay -S rstudio-desktop-bin which also worked out but when I try to open it, it doesn’t do anything and I have no idea how to proceed. Anyone got any tips?

2 Likes

Well after typing rstudio --no-sandbox I got this response from the terminal
` Failed to load client buffer integration: wayland-egl

WebEngineContext used before QtWebEngine::initialize() or OpenGL context creation failed. qt.qpa.wayland: No shell integration named "xdg-shell" found qt.qpa.wayland: No shell integration named "xdg-shell-v6" found qt.qpa.wayland: No shell integration named "wl-shell" found qt.qpa.wayland: No shell integration named "ivi-shell" found qt.qpa.wayland: Loading shell integration failed. qt.qpa.wayland: Attempted to load the following shells ("xdg-shell", "xdg-shell-v6", "wl-shell", "ivi-shell") qt.qpa.wayland: Wayland does not support QWindow::requestActivate()

Have I forgotten to install something?

You are running wayland so try using these commands:

export QT_QPA_PLATFORM=xcb
rstudio --no-sandbox #or rstudio --disable-seccomp-filter-sandbox

Thank you a lot, this finally works!

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