How to install stringi library from archive and install the local icu52l.zip

前端 未结 5 908
我寻月下人不归
我寻月下人不归 2021-01-11 16:18

We\'re bumbling through making some R code work in a production environment and as part of that we\'re installing some R packages as follows:

# Default direc         


        
5条回答
  •  灰色年华
    2021-01-11 16:36

    1. Clone the git clone https://github.com/gagolews/stringi.git.
    2. Edit the .Rbuildignore file and get rid of the ^src/icu55/data line.
    3. Run R CMD build stringi_dir_name to build tar.gz file.
    4. Install the obtained .tar.gz file on your machine(s), e.g., via install.packages("stringi_xxx.tar.gz")

提交回复
热议问题