Wrote a very simple script for an shiny app and nothing shows up in the window that pops up. When I click open in browser it throws an error connection timed out. Here's the script that I ran:
library(shiny)
ui <- fluidPage("Hello world")
server <- function(input, output, session) {
}
shinyApp(ui, server)
There are no errors on the console or terminal that shows up, I have no idea why it's not showing up. Ran the same code in 3 different machines and it worked, just doesn't work on my desktop.
I'm currently on version 3.6.2 of base r and 1.1463 for Rstudio. Desktop is running Windows 10 x64 Steps I have tried so far: 1. Completely uninstalled R and Rstudio and reinstalled (Same issue) 2. Reverted back to older version of R (Same Issue) 3. Updated to the new version of Rstudio (New version of Rstudio itself would not open) 4. Computer was restarted multiple times throughout the process.
Would appreciate any help on this. Thank you!