Re: [R] install R

2019-05-09 Thread Paul Bivand
I'd encourage you to install a full build system for your linux. That way you are able to compile any contributed packages you may want. Your linux package manager (apt, dnf, urpmi etc) may be able to provide an R compiled package, which with the exception of Debian/Ubuntu is likely to be several

Re: [R] install R

2019-05-08 Thread John via R-help
On Wed, 8 May 2019 21:05:29 +0800 (CST) yueli wrote: > Hello, > > > I am trying to install R. > > > Thanks in advance for any help! > > > Yue > > It appears that your GCC compiler installation doesn't include all the compilers that can come with it. All those "no's" listed in your output

Re: [R] install R

2019-05-08 Thread Sarah Goslee
Hi, If you don't want to install the binary for your version of linux, then you must install the prerequisites first. Notably, you have to have a compiler if you want to compile R from source! Here's a list: https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Essential-and-useful-othe

Re: [R] install R

2019-05-08 Thread Eric Berger
Do a web search such as "ubuntu install fortran" (or replace ubuntu by your distribution if it's different, e.g. debian or centos or ..) e.g. the above search gives a result of the following link which provides the appropriate commands https://fossnaija.com/how-to-install-fortran-compiler-in-linu

[R] install R

2019-05-08 Thread yueli
Hello, I am trying to install R. Thanks in advance for any help! Yue li@li-HP-Pavilion-Desktop-590-p0xxx:~/R-3.6.0$ ./configure checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu loading site script './config.site' loading build-specific scr

Re: [R] Install R into mac

2018-09-12 Thread Jeffrey Hunter
Hi, What type of issues is your student running into? Please review the following video install. https://medium.com/@GalarnykMichael/install-r-and-rstudio-on-mac-e911606ce4f4 Thanks, Jeff Jeffrey M. Hunter Senior

Re: [R] Install R into mac

2018-09-12 Thread Jeff Newmiller
Also read the CRAN download web page which says 10.10.5 is too old for current supported versions of R. Could try an archived version or, better yet, upgrade the OS. On September 12, 2018 9:25:11 AM PDT, Bert Gunter wrote: >You have given insufficient information for useful help. R installs >(

Re: [R] Install R into mac

2018-09-12 Thread Bert Gunter
You have given insufficient information for useful help. R installs (from the Mac binary) without difficulty on my Mac. Have your student post with sufficient details to the r-sig-mac list. -- Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking t

[R] Install R into mac

2018-09-12 Thread AbouEl-Makarim Aboueissa
Dear All: One of my students has mac software OS X Yosemite, Version 10.10.5. He could not install R into his mac laptop. I am not familiar with mac at all. Any help will be appreciated. with thanks abou __ *AbouEl-Makarim Aboueissa, PhD* *Professor of Statistics* *Gradua

Re: [R] install R in relative path

2016-11-03 Thread Tom Graves via R-help
Do you know if there is anyway to not have to put it in the PATH or symlink to the original build location?  I was hoping just calling it in relative path like ./R-3.3.1/bin/Rscript would do it but it errors Rscript execution error: No such file or directory.  is there any sort of RPATH (similar

Re: [R] install R in relative path

2016-10-19 Thread Tom Graves via R-help
Thanks.  I will give this a try.  I was doing the install step and trying to configure the relative path before. Tom On Wednesday, October 19, 2016 3:38 AM, Martin Maechler wrote: > Tom Graves via R-help >    on Tue, 18 Oct 2016 21:06:54 + writes:     > Hello everyone, I

Re: [R] install R in relative path

2016-10-19 Thread Martin Maechler
> Tom Graves via R-help > on Tue, 18 Oct 2016 21:06:54 + writes: > Hello everyone, I am trying to figure out if I can install > R in a relative path? Yes. Even better you don't have to "install" it at all in the strict sense. Just *build* it and run it from the build di

[R] install R in relative path

2016-10-18 Thread Tom Graves via R-help
Hello everyone, I am trying to figure out if I can install R in a relative path?  The reason I need to do this is to send R along to a Hadoop cluster so that I can use sparkR with the R version I shipped. The Hadoop cluster doesn't have R installed and the admin won't install it.  I tried a few

Re: [R] Install R version 3.3 on Debian server

2016-07-18 Thread Martin Maechler
> Mbr Mbr > on Mon, 18 Jul 2016 11:45:00 +0200 writes: > Hello, > I'm currently in a internship and I'm working on a Debian server. > However, I have some errors in my scripts and I think it's because of the > version of R installed on the server (works well on my PC w

[R] Install R version 3.3 on Debian server

2016-07-18 Thread Mbr Mbr
Hello, I'm currently in a internship and I'm working on a Debian server. However, I have some errors in my scripts and I think it's because of the version of R installed on the server (works well on my PC with the latest version of R on Windows aka 3.3.1). Here are the details from sessionInfo()

[R] Install R (version 3.2.5) in CentOS platform

2016-04-30 Thread wenbo
Hi, I want to install the latest R in CentOS. Below is the command line: ./configure --prefix=/home/fino/R/3.2.5/ --with-tcl-config=/home/fino/software/tcl8.6.1/lib/tclConfig.sh --with-tk-config= /home/fino /software/tk8.6.1/lib/tkConfig.sh --with-readline=yes --with-cairo=yes --without-x Below i

Re: [R] install R-devel from R 3.1 to R 3.2 kubuntu

2015-03-08 Thread Karim Mezhoud
Resolved, Thanks sudo apt-get install libxt-dev sudo apt-get install fonts-inconsolata On Sun, Mar 8, 2015 at 11:30 AM, Uwe Ligges wrote: > > > On 08.03.2015 11:42, Karim Mezhoud wrote: > >> Thanks Uwe, >> yes I read it and I stopped on the last step (below). Something warning >> with x11 heade

Re: [R] install R-devel from R 3.1 to R 3.2 kubuntu

2015-03-08 Thread Uwe Ligges
On 08.03.2015 11:42, Karim Mezhoud wrote: Thanks Uwe, yes I read it and I stopped on the last step (below). Something warning with x11 headers/libs. What I need to do? Thanks sudo apt-get build-dep r-base sudo apt-get install subversion ccache mkdir ~/svn/ cd ~/svn/ svn co https://svn.r-projec

Re: [R] install R-devel from R 3.1 to R 3.2 kubuntu

2015-03-08 Thread Karim Mezhoud
Thanks Uwe, yes I read it and I stopped on the last step (below). Something warning with x11 headers/libs. What I need to do? Thanks sudo apt-get build-dep r-base sudo apt-get install subversion ccache mkdir ~/svn/ cd ~/svn/ svn co https://svn.r-project.org/R/trunk r-devel/R cd /svn/r-devel/R LA

Re: [R] install R-devel from R 3.1 to R 3.2 kubuntu

2015-03-08 Thread Uwe Ligges
On 08.03.2015 08:30, Karim Mezhoud wrote: Dear all, I found some threads about compiling r-devel source and installing process but I need some clarifications. 1. Is it better to uninstall R 3.1 before installing R-devel? No, they can be installed separately. 2. I have multiples library dire

[R] install R-devel from R 3.1 to R 3.2 kubuntu

2015-03-07 Thread Karim Mezhoud
Dear all, I found some threads about compiling r-devel source and installing process but I need some clarifications. 1. Is it better to uninstall R 3.1 before installing R-devel? 2. I have multiples library directories, R-devel will use these libpaths? > .libpaths() [1] "/home/mezhoud/R/x86_64-pc-l

Re: [R] Install R on linux Mint

2015-01-14 Thread Jeroen Ooms
On Wed, Jan 14, 2015 at 7:40 PM, Jeroen Ooms wrote: > Try 'precise' instead of 'utopic' I meant 'trusty'. The version should match the underlying ubuntu: http://www.linuxmint.com/oldreleases.php __ R-help@r-project.org mailing list -- To UNSUBSCRIBE an

Re: [R] Install R on linux Mint

2015-01-14 Thread Jeroen Ooms
Try 'precise' instead of 'utopic' On Wed, Jan 14, 2015 at 7:31 PM, John Sorkin wrote: > I am trying to install R on Linux mint 17.1. I followed the instructions > found on CRAN and got a messages about unmet dependencies. I detail below the > steps I took: > > I added deb http://lib.stat.cmu.ed

[R] Install R on linux Mint

2015-01-14 Thread John Sorkin
I am trying to install R on Linux mint 17.1. I followed the instructions found on CRAN and got a messages about unmet dependencies. I detail below the steps I took: I added deb http://lib.stat.cmu.edu/R/CRAN/bin/linux/ubuntu utopic/ to /etc/apt/sources.list As can be seen below: john-OptiPlex-G

Re: [R] install R without texlive dependencies

2014-11-20 Thread Marc Schwartz
> On Nov 20, 2014, at 8:00 AM, Duncan Murdoch wrote: > > On 20/11/2014 3:31 AM, Muraki Kazutaka wrote: >> Hi all >> I'm trying install R from EPEL repo on Scientific Linux. It's going >> together texlive rpm dependencies also from repo, but I already have >> installed TexLive with tlmgr from CTA

Re: [R] install R without texlive dependencies

2014-11-20 Thread Duncan Murdoch
On 20/11/2014 3:31 AM, Muraki Kazutaka wrote: Hi all I'm trying install R from EPEL repo on Scientific Linux. It's going together texlive rpm dependencies also from repo, but I already have installed TexLive with tlmgr from CTAN mirror and I don't want texlive rpms from linux repo. So... Question

[R] install R without texlive dependencies

2014-11-20 Thread Muraki Kazutaka
Hi all I'm trying install R from EPEL repo on Scientific Linux. It's going together texlive rpm dependencies also from repo, but I already have installed TexLive with tlmgr from CTAN mirror and I don't want texlive rpms from linux repo. So... Question is... How can I install R without these deps an

Re: [R] install R package on Unix cluster

2012-03-19 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 18/03/12 14:40, Uwe Ligges wrote: > > > On 18.03.2012 05:47, Lorenzo Cattarino wrote: >> Hi R users, >> >> Working from a PC, I am trying to install the spatstat package on a Unix >> cluster. I created >> the following PBS file to send a job ar

Re: [R] install R package on Unix cluster

2012-03-18 Thread Uwe Ligges
On 18.03.2012 05:47, Lorenzo Cattarino wrote: Hi R users, Working from a PC, I am trying to install the spatstat package on a Unix cluster. I created the following PBS file to send a job array: #!/bin/bash -ue #PBS -m ae #PBS -M my email #PBS -J 1-45 #PBS -A my username #PBS -N job name #PB

[R] install R package on Unix cluster

2012-03-18 Thread Lorenzo Cattarino
Hi R users, Working from a PC, I am trying to install the spatstat package on a Unix cluster. I created the following PBS file to send a job array: #!/bin/bash -ue #PBS -m ae #PBS -M my email #PBS -J 1-45 #PBS -A my username #PBS -N job name #PBS -l resources #PBS -l walltime cd $PBS_O_WORKDIR

Re: [R] Install R 2.10.1 on Windows XP Errors

2010-03-02 Thread mkborregaard
>From CRAN: "2.8 What's the best way to upgrade? That's a matter of taste. For most people the best thing to do is to uninstall R (see the previous Q), install the new version, copy any installed packages to the library folder in the new installation, run update.packages(checkBuilt=TRUE, ask=FAL

Re: [R] Install R 2.10.1 on Windows XP Errors

2010-01-26 Thread Uwe Ligges
On 26.01.2010 22:09, steve_fried...@nps.gov wrote: I have just upgraded from 2.9.2 to 2.10.1 on my XP machine. I rec'd the following error message: Error in strsplit(x[ok], "[.-]") : 5 arguments passed to .Internal(strsplit) which requires 6 I also tried update.packages(checkBuilt=TRUE,

[R] Install R 2.10.1 on Windows XP Errors

2010-01-26 Thread Steve_Friedman
I have just upgraded from 2.9.2 to 2.10.1 on my XP machine. I rec'd the following error message: Error in strsplit(x[ok], "[.-]") : 5 arguments passed to .Internal(strsplit) which requires 6 I also tried update.packages(checkBuilt=TRUE, ask = FALSE) > update.packages(checkBuilt=TRUE, ask=FAL

Re: [R] Install R on Cygwin (correction)

2009-08-02 Thread Patrick Connolly
I guess you're trying to make a Windows computer work something like a Unix computer when using R. I tried for many weeks trying to get cygwin to work, but all sorts of details never worked anywhere nearly as simply as they do using Linux. What you might find useful to know is that the Windows ver

[R] Install R on Cygwin (correction)

2009-07-31 Thread fabe.malo
Hello, I should use R on cygwin. I have ever install cygwin and now I try to install R. I have read the R manual and particularly the part : Installation R under Unix but I improved some difficulties for succeed in this task. Actually I have create a R repertory where I have unzipped the file R-

[R] Install R on Cygwin

2009-07-31 Thread fabe.malo
Hello, I should use R on cygwin. I have ever install cygwin and now I try to install R. I have read the R manual and particularly the part : Installation R under Unix but I improved some difficulties for succeed in this task. Actually I have create a R repertory where I have unzipped the file R-2

Re: [R] install R on Unix without Admin Privilege

2007-12-21 Thread Gabor Csardi
On Fri, Dec 21, 2007 at 10:46:39AM -0500, Wensui Liu wrote: > HI, Gabor, > what program do i need to compile R on unix? At least a C compiler, maybe a Fortran compiler too. Some standard Unix tools like make as well. See also: http://cran.r-project.org/doc/manuals/R-admin.html > local dir? do you

Re: [R] install R on Unix without Admin Privilege

2007-12-21 Thread Wensui Liu
HI, Gabor, what program do i need to compile R on unix? local dir? do you mean dir under my user name with my profile? On Dec 21, 2007 10:42 AM, Gabor Csardi <[EMAIL PROTECTED]> wrote: > Well i don't know which Unix you have, but it shouldn't matter anyway. > If you're able to compile programs on

Re: [R] install R on Unix without Admin Privilege

2007-12-21 Thread Gabor Csardi
Well i don't know which Unix you have, but it shouldn't matter anyway. If you're able to compile programs on the machine then download the R source, compile it and install it into your local directory. Gabor On Fri, Dec 21, 2007 at 10:25:36AM -0500, Wensui Liu wrote: > Good morning, Dear Lister,

[R] install R on Unix without Admin Privilege

2007-12-21 Thread Wensui Liu
Good morning, Dear Lister, I really like to use R on our unix server. However, I am not an admin of the system. I am wondering if it is possible to install R on unix without admin previlege. Thank you so much! Have a nice Xmas season! __ R-help@r-projec

Re: [R] install R packages [SEC=UNCLASSIFIED]

2007-09-12 Thread Uwe Ligges
Do you have to use some proxy server at your work? In that case, please read the R for Windows FAQs which tells how to arrange settings. Uwe Ligges [EMAIL PROTECTED] wrote: > Hi All, > > > > I installed R 2.5.1 recently on a PC (Windows XP Professional 2001) and tried > to install some R pa

[R] install R packages [SEC=UNCLASSIFIED]

2007-09-11 Thread Jin.Li
Hi All, I installed R 2.5.1 recently on a PC (Windows XP Professional 2001) and tried to install some R packages. It took several minutes and gave me the following message. > utils:::menuInstallPkgs() --- Please select a CRAN mirror for use in this session --- Error in open.connection(fil