Locale error when deploying to Shiny

I have the same problem as in this post . The problem was not resolved, so I decided to ask the question again about the same question (I do not know if this is suitable for this or if the comment in the original question would be more appropriate).

I made a Shiny application and got the following deployment error:

Preparing to deploy application...DONE Uploading application bundle...Detecting system locale ... Error in read.table(file = file, header = header, sep = sep, quote = quote, : incomplete final line found by readTableHeader on 'system("systeminfo /FO csv", intern = TRUE, wait = TRUE)' Calls: <Anonymous> ... systemLocale -> systemInfo -> read.csv -> read.table Execution halted 

I should try to change my language for this part of the code, but the problem persists:

 Sys.setlocale("LC_ALL","English") 
+5
source share

All Articles