â--with-x=yes (default) and X11 headers/libs are not availableâ
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
i am trying to install R in our cluster(OS of cluster is Red Hat Enterprise Linux 6), where i dont have root access.I tried
$wget http://cran.rstudio.com/src/base/R-3/R-3.1.1.tar.gz
$ tar xvf R-3.1.1.tar.gz
$ cd R-3.1.1
$ ./configure --prefix=/home/Kryo/R-3.1.1
But getting error
configure: error: --with-x=yes (default) and X11 headers/libs are not available
compiling
 |Â
show 1 more comment
up vote
2
down vote
favorite
i am trying to install R in our cluster(OS of cluster is Red Hat Enterprise Linux 6), where i dont have root access.I tried
$wget http://cran.rstudio.com/src/base/R-3/R-3.1.1.tar.gz
$ tar xvf R-3.1.1.tar.gz
$ cd R-3.1.1
$ ./configure --prefix=/home/Kryo/R-3.1.1
But getting error
configure: error: --with-x=yes (default) and X11 headers/libs are not available
compiling
7
The error message looks pretty clear. Either install X11 development files or use--without-x
.
â jordanm
Jul 13 '15 at 16:13
Did you consider asking your sysadmin? Can't you use R on your own Linux workstation or laptop? A supercomputer is generally supposed to crunch numbers in efficient, compiled, code. You could prototype your algorithms on your laptop, then, if you need the power of your supercomputer, rewrite in C++ or Fortran (or even OpenCL) the critical parts of it. HPC are generally not bought to run interpreted code!
â Basile Starynkevitch
Jul 13 '15 at 16:22
@BasileStarynkevitch. I am working on analysing next generation sequencing data which needs a huge computational space. Impossible to work in worstation or laptop.
â Kryo
Jul 13 '15 at 16:28
1
Then I believe that R is not for this.... Supercomputers are costly enough (w.r.t. to qualified human labor cost) to be programmed in efficient compiled languages (e.g. C++, Fortran, OpenCL, perhaps Ocaml or Go or Common Lisp or Scala....). So use R for prototyping only (or for pre- or post- processing, which could run on a desktop), especially if you need huge computational power.
â Basile Starynkevitch
Jul 13 '15 at 16:29
1
@jordanm please post answers as answers (or, alternatively, if you think the question should be closed, vote to close).
â derobert
Jul 13 '15 at 17:25
 |Â
show 1 more comment
up vote
2
down vote
favorite
up vote
2
down vote
favorite
i am trying to install R in our cluster(OS of cluster is Red Hat Enterprise Linux 6), where i dont have root access.I tried
$wget http://cran.rstudio.com/src/base/R-3/R-3.1.1.tar.gz
$ tar xvf R-3.1.1.tar.gz
$ cd R-3.1.1
$ ./configure --prefix=/home/Kryo/R-3.1.1
But getting error
configure: error: --with-x=yes (default) and X11 headers/libs are not available
compiling
i am trying to install R in our cluster(OS of cluster is Red Hat Enterprise Linux 6), where i dont have root access.I tried
$wget http://cran.rstudio.com/src/base/R-3/R-3.1.1.tar.gz
$ tar xvf R-3.1.1.tar.gz
$ cd R-3.1.1
$ ./configure --prefix=/home/Kryo/R-3.1.1
But getting error
configure: error: --with-x=yes (default) and X11 headers/libs are not available
compiling
compiling
edited Jul 13 '15 at 17:10
Braiam
22.8k1972133
22.8k1972133
asked Jul 13 '15 at 16:11
Kryo
11614
11614
7
The error message looks pretty clear. Either install X11 development files or use--without-x
.
â jordanm
Jul 13 '15 at 16:13
Did you consider asking your sysadmin? Can't you use R on your own Linux workstation or laptop? A supercomputer is generally supposed to crunch numbers in efficient, compiled, code. You could prototype your algorithms on your laptop, then, if you need the power of your supercomputer, rewrite in C++ or Fortran (or even OpenCL) the critical parts of it. HPC are generally not bought to run interpreted code!
â Basile Starynkevitch
Jul 13 '15 at 16:22
@BasileStarynkevitch. I am working on analysing next generation sequencing data which needs a huge computational space. Impossible to work in worstation or laptop.
â Kryo
Jul 13 '15 at 16:28
1
Then I believe that R is not for this.... Supercomputers are costly enough (w.r.t. to qualified human labor cost) to be programmed in efficient compiled languages (e.g. C++, Fortran, OpenCL, perhaps Ocaml or Go or Common Lisp or Scala....). So use R for prototyping only (or for pre- or post- processing, which could run on a desktop), especially if you need huge computational power.
â Basile Starynkevitch
Jul 13 '15 at 16:29
1
@jordanm please post answers as answers (or, alternatively, if you think the question should be closed, vote to close).
â derobert
Jul 13 '15 at 17:25
 |Â
show 1 more comment
7
The error message looks pretty clear. Either install X11 development files or use--without-x
.
â jordanm
Jul 13 '15 at 16:13
Did you consider asking your sysadmin? Can't you use R on your own Linux workstation or laptop? A supercomputer is generally supposed to crunch numbers in efficient, compiled, code. You could prototype your algorithms on your laptop, then, if you need the power of your supercomputer, rewrite in C++ or Fortran (or even OpenCL) the critical parts of it. HPC are generally not bought to run interpreted code!
â Basile Starynkevitch
Jul 13 '15 at 16:22
@BasileStarynkevitch. I am working on analysing next generation sequencing data which needs a huge computational space. Impossible to work in worstation or laptop.
â Kryo
Jul 13 '15 at 16:28
1
Then I believe that R is not for this.... Supercomputers are costly enough (w.r.t. to qualified human labor cost) to be programmed in efficient compiled languages (e.g. C++, Fortran, OpenCL, perhaps Ocaml or Go or Common Lisp or Scala....). So use R for prototyping only (or for pre- or post- processing, which could run on a desktop), especially if you need huge computational power.
â Basile Starynkevitch
Jul 13 '15 at 16:29
1
@jordanm please post answers as answers (or, alternatively, if you think the question should be closed, vote to close).
â derobert
Jul 13 '15 at 17:25
7
7
The error message looks pretty clear. Either install X11 development files or use
--without-x
.â jordanm
Jul 13 '15 at 16:13
The error message looks pretty clear. Either install X11 development files or use
--without-x
.â jordanm
Jul 13 '15 at 16:13
Did you consider asking your sysadmin? Can't you use R on your own Linux workstation or laptop? A supercomputer is generally supposed to crunch numbers in efficient, compiled, code. You could prototype your algorithms on your laptop, then, if you need the power of your supercomputer, rewrite in C++ or Fortran (or even OpenCL) the critical parts of it. HPC are generally not bought to run interpreted code!
â Basile Starynkevitch
Jul 13 '15 at 16:22
Did you consider asking your sysadmin? Can't you use R on your own Linux workstation or laptop? A supercomputer is generally supposed to crunch numbers in efficient, compiled, code. You could prototype your algorithms on your laptop, then, if you need the power of your supercomputer, rewrite in C++ or Fortran (or even OpenCL) the critical parts of it. HPC are generally not bought to run interpreted code!
â Basile Starynkevitch
Jul 13 '15 at 16:22
@BasileStarynkevitch. I am working on analysing next generation sequencing data which needs a huge computational space. Impossible to work in worstation or laptop.
â Kryo
Jul 13 '15 at 16:28
@BasileStarynkevitch. I am working on analysing next generation sequencing data which needs a huge computational space. Impossible to work in worstation or laptop.
â Kryo
Jul 13 '15 at 16:28
1
1
Then I believe that R is not for this.... Supercomputers are costly enough (w.r.t. to qualified human labor cost) to be programmed in efficient compiled languages (e.g. C++, Fortran, OpenCL, perhaps Ocaml or Go or Common Lisp or Scala....). So use R for prototyping only (or for pre- or post- processing, which could run on a desktop), especially if you need huge computational power.
â Basile Starynkevitch
Jul 13 '15 at 16:29
Then I believe that R is not for this.... Supercomputers are costly enough (w.r.t. to qualified human labor cost) to be programmed in efficient compiled languages (e.g. C++, Fortran, OpenCL, perhaps Ocaml or Go or Common Lisp or Scala....). So use R for prototyping only (or for pre- or post- processing, which could run on a desktop), especially if you need huge computational power.
â Basile Starynkevitch
Jul 13 '15 at 16:29
1
1
@jordanm please post answers as answers (or, alternatively, if you think the question should be closed, vote to close).
â derobert
Jul 13 '15 at 17:25
@jordanm please post answers as answers (or, alternatively, if you think the question should be closed, vote to close).
â derobert
Jul 13 '15 at 17:25
 |Â
show 1 more comment
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
According to this thread, you should just install libXt-devel
package and you should be fine.
But perhaps you also should install xorg-x11-server-devel
and libX11-devel
?
That would be:
yum install xorg-x11-server-devel libX11-devel libXt-devel
add a comment |Â
up vote
0
down vote
I am having this same problem but on Mac
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
According to this thread, you should just install libXt-devel
package and you should be fine.
But perhaps you also should install xorg-x11-server-devel
and libX11-devel
?
That would be:
yum install xorg-x11-server-devel libX11-devel libXt-devel
add a comment |Â
up vote
4
down vote
accepted
According to this thread, you should just install libXt-devel
package and you should be fine.
But perhaps you also should install xorg-x11-server-devel
and libX11-devel
?
That would be:
yum install xorg-x11-server-devel libX11-devel libXt-devel
add a comment |Â
up vote
4
down vote
accepted
up vote
4
down vote
accepted
According to this thread, you should just install libXt-devel
package and you should be fine.
But perhaps you also should install xorg-x11-server-devel
and libX11-devel
?
That would be:
yum install xorg-x11-server-devel libX11-devel libXt-devel
According to this thread, you should just install libXt-devel
package and you should be fine.
But perhaps you also should install xorg-x11-server-devel
and libX11-devel
?
That would be:
yum install xorg-x11-server-devel libX11-devel libXt-devel
answered Feb 21 '17 at 12:51
Anthony O.
30528
30528
add a comment |Â
add a comment |Â
up vote
0
down vote
I am having this same problem but on Mac
add a comment |Â
up vote
0
down vote
I am having this same problem but on Mac
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I am having this same problem but on Mac
I am having this same problem but on Mac
answered 8 mins ago
Low Kian Seong
1112
1112
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f215728%2fwith-x-yes-default-and-x11-headers-libs-are-not-available%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
7
The error message looks pretty clear. Either install X11 development files or use
--without-x
.â jordanm
Jul 13 '15 at 16:13
Did you consider asking your sysadmin? Can't you use R on your own Linux workstation or laptop? A supercomputer is generally supposed to crunch numbers in efficient, compiled, code. You could prototype your algorithms on your laptop, then, if you need the power of your supercomputer, rewrite in C++ or Fortran (or even OpenCL) the critical parts of it. HPC are generally not bought to run interpreted code!
â Basile Starynkevitch
Jul 13 '15 at 16:22
@BasileStarynkevitch. I am working on analysing next generation sequencing data which needs a huge computational space. Impossible to work in worstation or laptop.
â Kryo
Jul 13 '15 at 16:28
1
Then I believe that R is not for this.... Supercomputers are costly enough (w.r.t. to qualified human labor cost) to be programmed in efficient compiled languages (e.g. C++, Fortran, OpenCL, perhaps Ocaml or Go or Common Lisp or Scala....). So use R for prototyping only (or for pre- or post- processing, which could run on a desktop), especially if you need huge computational power.
â Basile Starynkevitch
Jul 13 '15 at 16:29
1
@jordanm please post answers as answers (or, alternatively, if you think the question should be closed, vote to close).
â derobert
Jul 13 '15 at 17:25