How to solve the error “ missing required header GL/gl.h” while installing the Package mvoutlier in R?

后端 未结 8 1119
囚心锁ツ
囚心锁ツ 2021-01-31 01:48

I am trying to install the package mvoutlier but following error occurs during installation:

install.packages(\"mvoutlier\")
configure: error: missi         


        
8条回答
  •  清酒与你
    2021-01-31 02:41

    configure: error: missing required header GL/gl.h 
    

    normally means you haven't installed the -dev version of a package, in this case GL.

    On my system, GL/gl.h is owned by mesa-common-dev

    $ dpkg -S /usr/include/GL/gl.h
    mesa-common-dev: /usr/include/GL/gl.h
    

    which would have been installed with apt-get install mesa-common-dev or via some GUI magic.

提交回复
热议问题