Hi, You can solve local problem by adding the following lines in ~/.Rprofile .First <- function() { cat("\n Welcome to R!\n\n") Sys.setlocale(category = "LC_ALL", locale = "en_US.UTF-8") } .Last <- function() cat("\n Goodbye!\n\n") HTH. Best, Dong-hyun Oh