Gviz包安装成功,但无法加载
Error: package or namespace load failed for ‘Gviz’ in dyn.load(file, DLLpath = DLLpath, ...):
unable to load shared object '/home/zyh/R/x86_64-pc-linux-gnu-library/3.6/data.table/libs/datatable.so':
/lib/libgomp.so.1: version `GOMP_4.5' not found (required by /home/zyh/R/x86_64-pc-linux-gnu-library/3.6/data.table/libs/datatable.so)
我已经解决了这个问题,因为我的lib libgome .so。我没有GOMP_4.5.
0000000000000000 A GOMP_1.0
0000000000000000 A GOMP_2.0
0000000000000000 A GOMP_3.0
0000000000000000 A GOMP_4.0
0000000000000000 A GOMP_4.0.1
0000000000008980 T GOMP_atomic_end
然后重新安装libgome .so.1
apt install --reinstall libgomp1
然后
ln -s /usr/lib/x86_64-linux-gnu/libgomp.so.1 /lib/libgomp.so.1
那么成功。