我需要R头文件来编译某些内容。我通过以下方式在ubuntu上安装了R:
sudo apt-get r-base-dev
R工作正常。但是我找不到R头,例如Rmath.h。尝试编译时出现此错误:
gcc -g -std=c99 -I/usr/include -O3 -lRmath -lm -lpthread -o qcpg qcpg.c
In file included from qcpg.c:1:0:
qcpg.h:19:19: fatal error: Rmath.h: No such file or directory
compilation terminated.
make: *** [qcpg] Error 1
有任何想法吗??
最佳答案
你也想做
sudo apt-get install r-mathlib
其中包含文件
/usr/include/Rmath.h
。