Hiii I am trying to install R-2.15.2 after doing ./configure its showing error: --with-x=yes (default) and X11 headers/libs are not available and when i am running make its showing make: *** No targets specified and no makefile found. Stop. Even I read the install file also but i am not getting any solution. Please help me out -- Meenu Chopra Research Associate Animal Genomics Lab NDRI, Karnal [[alternative HTML version deleted]]
Hi you will get probably better help from others but I would recommend you trying to install recent version of R (3.0.0 I believe) And you will be probably asked also about your OS and what exactly you did during installation. Regards Petr> -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r- > project.org] On Behalf Of Meenu Chopra > Sent: Thursday, May 09, 2013 3:06 PM > To: r-help at r-project.org > Subject: [R] R installation error > > Hiii > > I am trying to install R-2.15.2 > after doing ./configure its showing error: --with-x=yes (default) and > X11 headers/libs are not available > > and when i am running make its showing > make: *** No targets specified and no makefile found. Stop. > Even I read the install file also but i am not getting any solution. > > Please help me out > > > > -- > Meenu Chopra > Research Associate > Animal Genomics Lab > NDRI, Karnal > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting- > guide.html > and provide commented, minimal, self-contained, reproducible code.
Le jeudi 09 mai 2013 ? 14:06 +0100, Meenu Chopra a ?crit :> Hiii > > I am trying to install R-2.15.2 > after doing ./configure its showing error: --with-x=yes (default) and X11 > headers/libs are not available > > and when i am running make its showing > make: *** No targets specified and no makefile found. Stop. > Even I read the install file also but i am not getting any solution. > > Please help me outWhy don't you use the packages from your (not mentioned) distribution? Anyway, to build R with X11 support you will need to install X11 development packages. Regards
On 05/09/2013 11:06 PM, Meenu Chopra wrote:> Hiii > > I am trying to install R-2.15.2 > after doing ./configure its showing error: --with-x=yes (default) and X11 > headers/libs are not available > > and when i am running make its showing > make: *** No targets specified and no makefile found. Stop. > Even I read the install file also but i am not getting any solution. >Hi Meenu, The second error is due to the first, so don't worry about it for the moment. Since you are compiling, you are probably on a Linux system. Try this: su <root password> yum search libX11 <this will produce a list of about 6 packages> <if you are on a 32 bit system> yum install libX11-devel.i686 libX11.i686 libX11-common.noarch <if you are on a 64 bit system> yum install libX11-devel.x86_64 libX11.x86_64 libX11-common.noarch exit This should get the necessary stuff. You may also have problems with "readline". If so, let us know. Jim