[help ?] Default Shiny app not rendering after fresh install :-(

Hi,

After a fresh install of rStudio an running the default (tutorial) application of shiny shown here :

It is not rendering as the example... No loayout, no CSSn and no interactivity... :frowning:

Surely missing something (library / package) but I can't figure out what is missing... This is the output of the console...

> install.packages("shiny")
Installing package into ‘C:/Users/Stéphane/Documents/R/win-library/3.6’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.6/shiny_1.3.2.zip'
Content type 'application/zip' length 4694584 bytes (4.5 MB)
downloaded 4.5 MB

package ‘shiny’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in
	C:\Users\Stéphane\AppData\Local\Temp\Rtmpk3JPk5\downloaded_packages
> library(shiny)
> runExample("01_hello")

Listening on http://127.0.0.1:7507

Thank you for helping !

Type sessionInfo() in the console, or any of the derivatives, and paste it here.

> sessionInfo()
R version 3.6.1 (2019-07-05)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 18362)

Matrix products: default

locale:
[1] LC_COLLATE=French_France.1252  LC_CTYPE=French_France.1252   
[3] LC_MONETARY=French_France.1252 LC_NUMERIC=C                  
[5] LC_TIME=French_France.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods  
[7] base     

other attached packages:
[1] shiny_1.3.2

loaded via a namespace (and not attached):
 [1] compiler_3.6.1  magrittr_1.5    R6_2.4.0        promises_1.0.1 
 [5] later_0.8.0     htmltools_0.3.6 tools_3.6.1     Rcpp_1.0.2     
 [9] digest_0.6.20   xtable_1.8-4    httpuv_1.5.1    mime_0.7

Here it is :

> sessionInfo() R version 3.6.1 (2019-07-05)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 18362)

Matrix products: default

locale: [1] LC_COLLATE=French_France.1252 LC_CTYPE=French_France.1252 
[3] LC_MONETARY=French_France.1252 LC_NUMERIC=C 
[5] LC_TIME=French_France.1252 

attached base packages: 
[1] stats graphics grDevices utils datasets methods 
[7] base other attached 

packages: [1] shiny_1.3.2 

loaded via a namespace (and not attached): 
[1] compiler_3.6.1 magrittr_1.5 R6_2.4.0 promises_1.0.1 
[5] later_0.8.0 htmltools_0.3.6 tools_3.6.1 Rcpp_1.0.2 
[9] digest_0.6.20 xtable_1.8-4 httpuv_1.5.1 mime_0.7

THe issue came from my username with an accent. Creating another Windows user without any accent solved this issue … 2 days of bad toughts about shiny :frowning:

If your question's been answered (even by you!), would you mind choosing a solution? It helps other people see which questions still need help, or find solutions if they have similar problems. Here’s how to do it:

1 Like

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