I am trying to create a brilliant app. I wanted to start from scratch, so starting very simply. Now, when I try to run my application, it works first, but the application instantly freezes, and this error appears:
Error in handlers$add(handler, key, tail) : Key / already in use
I thought I was wrong, so I tried it with an example from a brilliant textbook. But then again, the same mistake.
Here are my files:
ui.R
library(shiny) # Define UI for application that draws a histogram shinyUI(fluidPage( titlePanel("Test"), sidebarLayout( sidebarPanel("sidebar panel"), mainPanel("Data") ) ))
server.R
setwd("/home/User") library(shiny) shinyServer( function(input, output) { })
With runApp("ws") I get an error.
Any help is appreciated, thanks.
source share