Skip to content

Tag: r

x86_64-conda_cos6-linux-gnu-ld: cannot find -lc

I cannot install most of new packages in R, because of the following error: x86_64-conda_cos6-linux-gnu-ld: cannot find -lc. in some cases it is cannot find x86_64-conda_cos6-linux-gnu-ld: cannot find -lm Based on this post, the -l option is for linking dynamic libraries. This post suggests sudo yum install g…

How to install R and RMySQL in RedHat Linux 8?

How do I install R and RMYSQL on RedHat Linux 8? Cannot get the epel working. Trying to install R gives dependency errors. Answer Followed the instructions here: https://linuxconfig.org/install-r-on-linux-redhat-8 (Assuming that you have already installed the MySQL) Untar the downloaded R : Now install the fo…

Error while loading library “libicuuc.so.63” on termux

Since I have made an update of packages on Termux via: R can’t start, I receive this error message: I tried to reinstall the package ‘libicu’ through: but it has not worked: Does anyone have any tips or ideas? Answer I have never used linux, It is uncertain. Have you tried this code? Regardi…

Package fracdiff of R fails to install in Linux Mint

I am installing the package forecast. However, I get a persistent error because the package fracdiff fails with this error: Normally, when I see had non-zero exit status, it is for me a clue telling me that I should go to Synaptic and search for the library r-cran-fracdiff. However, this library is not presen…

port 28060 tcp is related to R?

OS is mint 18.2. subset output of netstat -ltnu is below. sessionInfo() out: R version 3.4.3 (2017-11-30) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Linux Mint 18.2 Matrix products: default BLAS: /usr/lib/libblas/libblas.so.3.6.0 LAPACK: /usr/lib/lapack/liblapack.so.3.6.0 locale: [1] LC_CTYPE=en_CA…

Schedule a function that belongs to an R package

I’m trying to build an R package whose goal is to run a series of analyses by taking input data and writing output data to an external database (PostgreSQL). Specifically, I need a set of operations to be scheduled to run on a daily basis. Therefore, I have written some bash scripts with R code (using t…