Skip to content

linux

4 messages · Soheila Khodakarim, Pascal Oettli, Henri-Paul Indiogine +1 more

#
Dear All

I can not download R for Linux.

I do not know which file I should install?

Best Regards,
Soheila
#
Hello,

http://cran.r-project.org/index.html


Regards.


----- Mail original -----
De?: Soheila Khodakarim <lkhodakarim at gmail.com>
??: "r-help at r-project.org" <r-help at r-project.org>
Cc?: 
Envoy? le : Mercredi 23 mai 2012 18h00
Objet?: [R] linux

Dear All

I can not download R for Linux.

I do not know which file I should install?

Best Regards,
Soheila

______________________________________________
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.
#
Hi!

2012/5/23 Soheila Khodakarim <lkhodakarim at gmail.com>:
Usually in Linux you need to give an installation command such as
"apt-get install ...."  The OS will then grab it from a repository for
you and install it.  It depends on the Linux distribution.

Best,
Henri-Paul
#
On 05/23/2012 05:00 AM, Soheila Khodakarim wrote:
Can you provide the list with additional information such as:

What Linux distribution?
What have you tried?

For what it's worth, I always compile from source on Linux.  To do that,
download the source tarball, unpack it and then run the following in the
directory the tarball unpacked to.  For this to work, you will probably
need the devel libraries installed on your system.

./configure
make
make install

Note that you will usually need to run "make install" as root, unless
you modify the installation location.

One reason I do this is, that I figure if my system has the tools
to compile R, I likely won't have concerns about installing packages
that require some compilation as well.

Kevin