Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configuration error when installing R on Linux [closed]

Tags:

linux

r

Steps to install:

  1. ./configure --enable-R-shlib

I get this error:

 configure: error: --with-x=yes (default) and X11 headers/libs are not available

in config.log file I see this entry:

 #define X_DISPLAY_MISSING 1

any ideas?

like image 878
george willy Avatar asked Feb 15 '12 15:02

george willy


People also ask

Is R installed on Linux?

R is part of many Linux distributions, you should check with your Linux package management system in addition to the link above.


1 Answers

Try either passing --with-x=no to the configure script, or install the X devel package for your linux flavour.

like image 130
jbowes Avatar answered Oct 25 '22 04:10

jbowes