Hi, i have installed tidyverse, but when i try: library(tidyverse), i get the following error:
Error: package or namespace load failed for ‘tidyverse’ in dyn.load(file, DLLpath = DLLpath, ...):
unable to load shared object '/home/neuro/R/x86_64-redhat-linux-gnu-library/3.6/xml2/libs/xml2.so':
libicuuc.so.58: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio
Then i try to specify the path where libicuuc.so.58 is, i paste this lines to ldpaths file:
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/neuro/anaconda2/lib/
export LD_LIBRARY_PATH
are you using a stand-alone R installation or an R core in Anaconda? If you are using a stand-alone installation, it is not a good idea to point your PATH to the anaconda distribution, in that case, it would be better to try to reinstall xml2 and see if you get any error message that can provide more information about the problem.