Re: [R] installation: while running make, unable to run pdflatex on 'NEWS.tex'

2024-03-02 Thread Benjamin Tyner
Thank you Ivan and Richard... Short version: a simple "sudo apt install texlive" fixed it. Longer version (attempt at a post-mortem): previously (back on 2023-11-05) on this same system I built R version 4.3.2; and /home/btyner/R432/lib/R/doc/NEWS.pdf does exist (and is a valid pdf with 48

Re: [R] installation: while running make, unable to run pdflatex on 'NEWS.tex'

2024-03-02 Thread Richard O'Keefe
On my system, pdftexcmds.sty can be found in /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty A quick poking around with 'apt' and 'dpkg-query -L' told me that this comes from the texlive-latex-recommended Ubuntu package. So on my system, if I didn't already have this, sudo apt

Re: [R] installation: while running make, unable to run pdflatex on 'NEWS.tex'

2024-03-01 Thread Ivan Krylov via R-help
В Fri, 1 Mar 2024 10:46:53 -0500 Benjamin Tyner пишет: > my platform info: > > Platform: x86_64-pc-linux-gnu (64-bit) > Running under: Ubuntu 22.04.4 LTS Quick things first: have you installed all the build-dependencies? apt build-dep r-base (maybe with --install-suggests? haven't

Re: [R] installation: while running make, unable to run pdflatex on 'NEWS.tex'

2024-03-01 Thread Jeff Newmiller via R-help
This really is all LaTeX errors, not R errors. Both examples complain that pdftexcmds.sty is not installed. Most "sty" files are in LaTeX packages. Each LaTeX distribution has its own way to install packages ... but the difficulty is usually on the same order of difficulty as installing R

[R] installation: while running make, unable to run pdflatex on 'NEWS.tex'

2024-03-01 Thread Benjamin Tyner
A kind member of R-core suggested this is due to a misconfiguration on my system, and to post it to the mailing list for troubleshooting. When trying to build R version 4.3.3, in at least two places during the process it gives LaTeX errors of the form: (example 1) you should 'make

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-09-06 Thread Ivan Krylov
В Wed, 06 Sep 2023 11:07:53 + Christophe Bousquet пишет: > As can be seen here > (https://github.com/git-for-windows/git/issues/4591), both issues were > related to a mispecification of my ComSpec environment variable. Its > value should be a single path to the cmd.exe file and no

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-09-06 Thread Christophe Bousquet via R-help
Sent from ProtonMail, encrypted email based in Switzerland. --- Original Message --- On Monday, September 4th, 2023 at 17:13, Ivan Krylov wrote: > В Mon, 04 Sep 2023 12:05:38 + > Christophe Bousquet chr_bousq...@protonmail.com пишет: > > > I will try compiling R from

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-09-04 Thread Ivan Krylov
В Mon, 04 Sep 2023 12:05:38 + Christophe Bousquet пишет: > I will try compiling R from source when I am back from holidays, and > ask you if I need assistance. Make sure to compile with DEBUG=1 so that the compiler flags needed to emit debugging information will be enabled. Good luck! --

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-09-04 Thread Christophe Bousquet via R-help
> If you're up to compiling R from source [] and using a symbolic > debugger [**] to step through Rcmd.exe, we could try to do that. > Murphy's law says that the copy of Rcmd.exe you'll build from source > will work well and refuse to reproduce the problem for you to > investigate. (Beyond that,

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-09-01 Thread Ivan Krylov
В Fri, 01 Sep 2023 09:05:45 + Christophe Bousquet пишет: > In the first situation, I run the command tools::Rcmd('SHLIB --help') > from within R (launched by clicking on the R icon). I get: > Process Name: Rcmd.exe > PID: 8204 > Path: C:\WINDOWS\System32\Conhost.exe > Result: SUCCESS >

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-09-01 Thread Christophe Bousquet via R-help
> Is there a "C:\Program Files\R\R-4.3.1\bin\x64\Rterm.exe"? If you > launch it, does it present an R command line? Yes, this file exists and when I launch it, a new functionally-working R terminal window pops up. > I'm suspecting that Rcmd.exe somehow messes up when it tries to locate >

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-31 Thread Ivan Krylov
В Thu, 31 Aug 2023 14:59:07 + Christophe Bousquet пишет: > So I get no output for tools::Rcmd('SHLIB --version'). > > I tried to run tools::Rcmd('SHLIB --help') or tools::Rcmd('check > --help'), but no output neither. > > I had more success with tools::Rcmd('BATCH --help'): The job of

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-31 Thread Christophe Bousquet via R-help
> This can be considered good news. You have just successfully performed > the job that is normally done by R CMD SHLIB when installing source > packages or running inline C++ code. The environment variables, at > least inside your running R session, are completely fine. > > Now we need to find

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-31 Thread Ivan Krylov
В Thu, 31 Aug 2023 14:01:54 + Christophe Bousquet пишет: > So when I run the commands, I get this output. I honestly have no > clue whether this can be considered as something useful or not :-/ > > ``` > > tools:::.shlib_internal(c('-n', 'hello.c')) > make cmd is > make -f

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-31 Thread Christophe Bousquet via R-help
> So starting a new Rcmd.exe process fails for some reason. > > If you take the same R session where the environment variables are > right and Sys.which() resolves Make and GCC and try to run > tools:::.shlib_internal(c('-n', 'hello.c')) or > tools:::.shlib_internal('hello.c'), does it do

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-31 Thread Ivan Krylov
В Thu, 31 Aug 2023 11:57:06 + Christophe Bousquet пишет: > > tools::Rcmd('SHLIB -n hello.c') > > tools::Rcmd('SHLIB hello.c') > > > > What do the commands print? Does the second command fail? > > I basically get no output from the two commands, apart from a new > blank R prompt. So

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-31 Thread Christophe Bousquet via R-help
> When installing packages containing code to compile, R eventually calls > R > CMD SHLIB. Same thing happens with inline C++: it gets stored in a > temporary file, compiled into a *.dll using R CMD SHLIB and then loaded > using dyn.load(). > > Write the following into a file named hello.c: > >

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-30 Thread Jeff Newmiller
TL:DR there are at least three maybe four ways to address this depending on what you plan to do. I usually adjust PATH to add Rtools using .Rprofile. But if you do that then if you want to use the command line to invoke R then you need to set the PATH separately when you start the shell. For

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-30 Thread Duncan Murdoch
On 30/08/2023 2:59 p.m., Ivan Krylov wrote: On Wed, 30 Aug 2023 16:31:20 + Christophe Bousquet wrote: So, yes, it seems possible for R to localize paths related to Rtools... But then, I really do not get where things go wrong... When installing packages containing code to compile, R

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-30 Thread Ivan Krylov
On Wed, 30 Aug 2023 16:31:20 + Christophe Bousquet wrote: > So, yes, it seems possible for R to localize paths related to > Rtools... But then, I really do not get where things go wrong... When installing packages containing code to compile, R eventually calls R CMD SHLIB. Same thing

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-30 Thread Ivan Krylov
В Wed, 30 Aug 2023 14:35:48 + Christophe Bousquet пишет: > I followed your instructions and, yes, Rtools43 bash told me at the > end "Hello world!". > > Do you think this is a good sign? And do you have any idea how I > could continue to solve the issue? It is a good sign. Your Rtools43

Re: [R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-30 Thread Ivan Krylov
On Tue, 29 Aug 2023 14:41:40 + Christophe Bousquet via R-help wrote: > (ii) the same issues keep coming back on my work laptop It may be worth asking the IT department at work, just in case there is a system to prevent unauthorised programs from running that interferes with Rtools. Are you

[R] Problems with installing R packages from source and running C++ in R, even on fresh R installation

2023-08-29 Thread Christophe Bousquet via R-help
[https://stackoverflow.com/questions/76979386/how-to-install-r-packages-from-source-on-fresh-r-installation] and on the RStan forum [https://discourse.mc-stan.org/t/cannot-compile-stan-program-from-r-package-brms/32294/22], but without success. This is kind of infuriating, because (i) I have

Re: [R] R installation

2023-01-26 Thread Bert Gunter
What is the error, **exactly**? Bert On Thu, Jan 26, 2023 at 9:12 AM Vivian Jungels via R-help < r-help@r-project.org> wrote: > Hello! > > I am trying to install R and its says there is an error with the software. > I am using the link for Mac OS the most recent version on the website > because

Re: [R] R installation

2023-01-26 Thread Kevin Thorpe
If you used this link for R-4.2.2-arm64.pkg then I have no other ideas. The r-sig-mac list can probably help you more, but there is the possibility you will get help here. > On Jan 26, 2023, at 12:19 PM, Vivian Jungels wrote: > > I have an M1 Mac with OS 13.2 so I did the most recent version

Re: [R] R installation

2023-01-26 Thread Kevin Thorpe
The most obvious question is did you download the correct package? There is a version for Intel-based MACs and for M1-based MACs. > On Jan 25, 2023, at 11:22 AM, Vivian Jungels via R-help > wrote: > > Hello! > > I am trying to install R and its says there is an error with the software. I

[R] R installation

2023-01-26 Thread Vivian Jungels via R-help
Hello! I am trying to install R and its says there is an error with the software. I am using the link for Mac OS the most recent version on the website because my Mac OS is M1 and 13.2 version. I am able to download it but then when I install it it says they’re an error with the software that

Re: [R] installation problem for a new package

2022-02-24 Thread Jeff Newmiller
Do use "reply-all"... others may be able to respond more quickly or more accurately than I. I have re-introduced the mailing list to this reply. For example, if you read [1] it says there is a system requirement that the completely separate gmp software be installed using your system software

Re: [R] installation problem for a new package

2022-02-24 Thread Jeff Newmiller
These messages seem relevant: >Error: package �CVXR’ could not be loaded >Warning messages: >1: In i.p(...) : installation of package �gmp’ had non-zero exit status You need to make sure these packages are installed successfully before the package you are interested will install. Please don't

Re: [R] Installation of a source package in R

2020-07-21 Thread Ivan Krylov
On Tue, 21 Jul 2020 20:26:16 + peri He wrote: > I am still getting error when I run: install.packages > ("package.tar.gz', repos = NULL, type = "source"). It's a good idea to specify both the things you are doing (which you did) and the results you are getting, i.e. the exact error message

[R] Installation of a source package in R

2020-07-21 Thread peri He
Hello, I have installed all packages successfully in order to unpack a source package. I am still getting error when I run: install.packages ("package.tar.gz', repos = NULL, type = "source"). Is that possible my system doesn't allow Rstudio to compile some information in C++ ? My colleague is

Re: [R] Installation of mclust package v5.4.6 on R v4.0.1 on Ubuntu v20.04 hangs

2020-06-17 Thread Bert Gunter
I would think that it is how interacts with the OS on Ubuntu, which is what the SIG is about and where also relevant expertise is likely to be found. But I claim no such expertise and you are certainly free to reject my suggestion as useless. Bert Gunter "The trouble with having an open mind is

Re: [R] Installation of mclust package v5.4.6 on R v4.0.1 on Ubuntu v20.04 hangs

2020-06-17 Thread Venkatesh Prasad Ranganath
Hey Jeff, Thanks for confirming the package could be built and installed on Ubuntu 18.04. I will pose the question to the SIG. Cheers, Venkatesh-Prasad Ranganath http://rvprasad.com On Wed, Jun 17, 2020 at 3:39 PM Jeff Newmiller wrote: > Please (re)read the Posting guide, which says that

Re: [R] Installation of mclust package v5.4.6 on R v4.0.1 on Ubuntu v20.04 hangs

2020-06-17 Thread Jeff Newmiller
Please (re)read the Posting guide, which says that this mailing list is for questions about the R language and not about compiling issues, and then go to r-sig-debian to look for more expertise. FYI I don't have Ubuntu 20.04, but I had no trouble installing mclust 5.4.6 with R4.0.1 on Ubuntu

Re: [R] Installation of mclust package v5.4.6 on R v4.0.1 on Ubuntu v20.04 hangs

2020-06-17 Thread Venkatesh Prasad Ranganath
Hey Bert, Since the process stalls during byte-compilation and package preparation, I am thinking the issue is likely due to R and not the Ubuntu platform. If you think otherwise, then can you please say you think so? Also, is there a way to trace/debug the package build process? The same

Re: [R] Installation of mclust package v5.4.6 on R v4.0.1 on Ubuntu v20.04 hangs

2020-06-17 Thread Bert Gunter
Probably better posted on R-sig-debian. Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Wed, Jun 17, 2020 at 11:33 AM Venkatesh Prasad Ranganath <

[R] Installation of mclust package v5.4.6 on R v4.0.1 on Ubuntu v20.04 hangs

2020-06-17 Thread Venkatesh Prasad Ranganath
Hey All, When I execute 'Rscript -e "install.packages('mclust')"` with R 4.0.1 on Ubuntu 20.04, the process hangs during package preparation. Any idea how to fix or debug this issue? Venkatesh-Prasad Ranganath - ENV: R v4.0.1, GCC v9, Ubuntu v20.04 CMD:

Re: [R] R installation Ubuntu 18.04 missing dependency libreadline6

2019-03-03 Thread John Kane
Thanks Rui, Depending on how I try to install I get a different error. I am starting to think that somehow the Ubuntu installation may be faulty. I used a ISO that I had burned about a year ago. I had no problem then with a shared installation but who knows. sudo apt-get update sudo apt-get

Re: [R] R installation Ubuntu 18.04 missing dependency libreadline6

2019-03-03 Thread John Kane via R-help
Cancel my mailing that source.list. to r-sig-debian.  I took one last look at the sources.list file and realised that I had the same repository repeated. I had read it as being commented out but it was not. Delete one line and I was fine.  Nothing like blindness! I must have scanned that thing

Re: [R] R installation Ubuntu 18.04 missing dependency libreadline6

2019-03-03 Thread John Kane via R-help
Will do. Thanks.  On Sunday, March 3, 2019, 3:59:14 p.m. EST, Ista Zahn wrote: Hi John, This is not the place, but if you post your /etc/apt/sources.list to r-sig-debian I might be able to help you sort it out. Best, Ista On Sun, Mar 3, 2019 at 2:08 PM John Kane wrote: > > Thanks

Re: [R] R installation Ubuntu 18.04 missing dependency libreadline6

2019-03-03 Thread Ista Zahn
Hi John, This is not the place, but if you post your /etc/apt/sources.list to r-sig-debian I might be able to help you sort it out. Best, Ista On Sun, Mar 3, 2019 at 2:08 PM John Kane wrote: > > Thanks Ista, > > Interestingly enough, I have only one repository as far as I can see. I was a >

Re: [R] R installation Ubuntu 18.04 missing dependency libreadline6

2019-03-03 Thread John Kane via R-help
Thanks Ista, Interestingly enough, I have only one repository as far as I can see. I was a bit amazed. I think I have a faulty Ubuntu installation and will have to reinstall. What fun   On Sunday, March 3, 2019, 1:16:52 p.m. EST, Ista Zahn wrote: Hi John, The official instructions at

Re: [R] R installation Ubuntu 18.04 missing dependency libreadline6

2019-03-03 Thread Ista Zahn
Hi John, The official instructions at https://cran.r-project.org/bin/linux/ubuntu/ work on a fresh ubuntu:bionic from dockerhub. This suggests that the issue is due to the configuration of your local system rather than with any problem with either R or ubuntu. My guess is that you've been reading

Re: [R] R installation Ubuntu 18.04 missing dependency libreadline6

2019-03-03 Thread Rui Barradas
Hello, I never installed R on Ubuntu like you did it. I follow this: sudo apt-get update sudo apt-get install r-base sudo apt-get install r-base-dev And it works at the first try. See [1] The problems I [always] have are with missing Ubuntu libs needed by contributed packages, not with base

[R] R installation Ubuntu 18.04 missing dependency libreadline6

2019-03-03 Thread John Kane via R-help
NOTE. This is a re-post of a message of Saturday 2018-03-03 sent with an incorrect header. To upgrade to R.3.5.2 from 3.4.4 I have been following the instructions at https://www.r-bloggers.com/installation-of-r-3-5-on-ubuntu-18-04-lts-and-tips-for-spatial-packages/ . I seem to have the

Re: [R] R installation Ubuntu 10.04 missing dependency

2019-03-03 Thread Eric Berger
Hi John, Is the subject line of your question correct? Ubuntu 10.04? If that is not a typo, that could be contributing to your problem. I believe that the current stable release of Ubuntu is 18.04. According to the following link ubuntu 10.04 was released almost 10 years ago and was "retired"

[R] R installation Ubuntu 10.04 missing dependency

2019-03-02 Thread John Kane
To upgrade to R.3.5.2 from 3.4.4 I have been following the instructions at https://www.r-bloggers.com/installation-of-r-3-5-on-ubuntu-18-04-lts-and-tips-for-spatial-packages/ . I seem to have the repository properly connected and verified. I am getting an error:

Re: [R] Installation Re: Problems with library...

2018-12-24 Thread Duncan Murdoch
On 24/12/2018 4:30 a.m., Medic wrote: 1. Jeff, thank you for your explanation! 2 Kum-Hoe, thank you for appointed treatment! --- QUESTION! I will also (with R) reinstall the RStudio. Allow me to ask a QUESTION (about packages installing) -- which variant is right: 1) installing all packages

Re: [R] Installation Re: Problems with library...

2018-12-24 Thread John C Frain
If I update in R the updates are visible in Rstudio and visa versa. If you use the default windows installation of both there should be no problems. Check that Rstudio is not using a different version of R to the version that contains packages updated in R and visa versa. On 24 Dec 2018 09:31,

[R] Installation Re: Problems with library...

2018-12-24 Thread Medic
1. Jeff, thank you for your explanation! 2 Kum-Hoe, thank you for appointed treatment! --- QUESTION! I will also (with R) reinstall the RStudio. Allow me to ask a QUESTION (about packages installing) -- which variant is right: 1) installing all packages only in R (RStudio will take them

Re: [R] Installation of R/qtl

2018-09-27 Thread Rich Shepard
On Thu, 27 Sep 2018, Swapan Kumar Tripathy wrote: I have successfully installed R, but could not install the R/qtl. There is instruction that "To install R/qtl, the simplest approach is to start R and type install.packages("qtl"). But, I do not find any step where to type

Re: [R] Installation of R/qtl

2018-09-27 Thread Knut Krueger
Am 27.09.2018 um 17:02 schrieb Swapan Kumar Tripathy: Sir, I have successfully installed R, but could not install the R/qtl. There is instruction that "To install R/qtl, the simplest approach is to start R and type install.packages("qtl"). But, I do not find any step where to type

[R] Installation of R/qtl

2018-09-27 Thread Swapan Kumar Tripathy
Sir, I have successfully installed R, but could not install the R/qtl. There is instruction that "To install R/qtl, the simplest approach is to start R and type install.packages("qtl"). But, I do not find any step where to type install.packages("qtl") during the process of installing R. Kindly,

Re: [R] Possible solution to R installation problemst for Linux Mint 19 users

2018-07-21 Thread Jeff Newmiller
a collaborative project with many contributors. >Type 'contributors()' for more information and >'citation()' on how to cite R or R packages in publications. > >Type 'demo()' for some demos, 'help()' for on-line help, or >'help.start()' for an HTML browser interface to help.

[R] Possible solution to R installation problemst for Linux Mint 19 users

2018-07-21 Thread Clive Nicholas via R-help
live@climate:~$ *Volia!* (Okay, so it doesn't install R 3.5.1 - the latest version - but that should eventually correct itself with future updates.) So, if you're having the same R installation problems I've just had after migrating to Linux Mint 19, this should work for you. Good luck. :) -- Clive Nic

Re: [R] Sharing an R installation via NFS on ubuntu cluster

2017-11-09 Thread Ista Zahn
On Nov 9, 2017 5:07 AM, "Florian Oswald" <florian.osw...@gmail.com> wrote: I can install R with sudo apt-get update sudo apt-get install r-base this is not my problem, and indeed, not my question. my question was how could I share the resulting R installation over NFS? Do

Re: [R] Sharing an R installation via NFS on ubuntu cluster

2017-11-09 Thread Florian Oswald
I can install R with sudo apt-get update sudo apt-get install r-base this is not my problem, and indeed, not my question. my question was how could I share the resulting R installation over NFS? Do I have to export every location where apt-get installs a component or can I force apt-get

Re: [R] Sharing an R installation via NFS on ubuntu cluster

2017-11-08 Thread Ista Zahn
On Wed, Nov 8, 2017 at 6:14 AM, Florian Oswald <florian.osw...@gmail.com> wrote: > hi all, > > i want to share an R installation from a master node to several compute > nodes via NFS. all nodes run ubuntu 16.04. I tried building R from source > but hit a wall several tim

[R] Sharing an R installation via NFS on ubuntu cluster

2017-11-08 Thread Florian Oswald
hi all, i want to share an R installation from a master node to several compute nodes via NFS. all nodes run ubuntu 16.04. I tried building R from source but hit a wall several times because of missing dependencies. So I am looking for something that uses the usual apt-get install proceedure

Re: [R] Permission to use R Installation Screenshots and Datasets

2017-03-14 Thread Jeff Newmiller
I am not sure there exists any one person who can grant you permission to use screen shots, but someone with more clue than I have may be able to clear this up with you. Regarding packages, copyright rests with the package authors, so use the maintainer() function to find out who you need to

[R] Request for Permission to Use Screenshots of R Installation in our text book

2017-03-14 Thread Srinivasa K G
Dear Sir/Madam, We are in the process of developing a textbook on R and are writing to request your permission to include certain screenshots relating to installation of the package in our book to be published tentatively in May 2017. The description of our book is as follows*:* *Title*:

[R] Permission to use R Installation Screenshots and Datasets

2017-03-14 Thread Srinivasa K G
Dear Sir/Madam, We are in the process of developing a textbook on R and are writing to request your permission to include certain screenshots relating to installation of the package in our book to be published tentatively in May 2017. The description of our book is as follows*:* *Title*:

Re: [R] installation error

2016-10-02 Thread David Winsemius
> On Oct 1, 2016, at 10:58 AM, > wrote: > > Hello, > > I’m suman kumar. I am trying to use “syuzhet” packages and already installed > it but when using it then facing some error. > I have run these codes but in second line, it is showing errors. >

[R] installation error

2016-10-01 Thread suman4apr
Hello, I’m suman kumar. I am trying to use “syuzhet” packages and already installed it but when using it then facing some error. I have run these codes but in second line, it is showing errors. library(syuzhet) textdata= get_text_as_string("G:/SEM-3/DSE-PROJECT/AGASHIYEmain.txt") s_v =

Re: [R] Installation of rJava fails

2016-08-17 Thread Ulrik Stervbo
I usually install such packages though apt-get and that usually works. Best, Ulrik On Wed, 17 Aug 2016 at 18:08 wrote: > Hi All, > > I try to install RWeka on Debian GNU Linux 8 Jessie (uname -a: > 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2+deb8u3 (2016-07-02) x86_64) >

[R] Installation of rJava fails

2016-08-17 Thread G . Maubach
Hi All, I try to install RWeka on Debian GNU Linux 8 Jessie (uname -a: 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2+deb8u3 (2016-07-02) x86_64) which has a dependency to "rJava". I did apt-get install openjdk-8-jre which went OK. Java is installed in: /var/lib/dpkg/alternatives/java

Re: [R] Installation of package "rio" broken

2016-06-14 Thread Uwe Ligges
On 14.06.2016 21:01, Ista Zahn wrote: On Tue, Jun 14, 2016 at 3:19 PM, wrote: Hi all, today I wanted to install package "rio". As it depends on package "feather" which is only available as source I have chosen to install "rio" from source. The installations fails with

Re: [R] Installation of package "rio" broken

2016-06-14 Thread Ista Zahn
On Tue, Jun 14, 2016 at 3:19 PM, wrote: > Hi all, > > today I wanted to install package "rio". As it depends on package "feather" > which is only available as source I have chosen to install "rio" from source. > The installations fails with the following messages: "feather"

Re: [R] Installation of package "rio" broken

2016-06-14 Thread William Dunlap via R-help
Your log showed that g++ was given the flag -std=c++0x. It should be -std=c++11 so the 'using typename = blahblah' syntax works. Either your feather/src/Makevars is missing the line CXX_STD=CXX11 or your version of R is lacking support for CXX_STD. > g++ -m32 -std=c++0x

[R] Installation of package "rio" broken

2016-06-14 Thread G . Maubach
Hi all, today I wanted to install package "rio". As it depends on package "feather" which is only available as source I have chosen to install "rio" from source. The installations fails with the following messages: -- cut -- * installing *source* package 'feather' ... ** Paket 'feather'

Re: [R] installation problem on Ubuntu

2016-04-22 Thread David Winsemius
> On Apr 22, 2016, at 12:47 PM, Paul Tremblay wrote: > > LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/:$LD_LIBRARY_PATH > source ~/.bash_profile On my machine Sys.getenv("LD_LIBRARY_PATH") returns "" in R and echo $LD_LIBRARY_PATH likewise returns only a carriage return

Re: [R] installation problem on Ubuntu

2016-04-22 Thread Paul Tremblay
LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/:$LD_LIBRARY_PATH source ~/.bash_profile I still get the same error. On Thu, Apr 21, 2016 at 7:45 PM, David Winsemius wrote: > > > On Apr 21, 2016, at 1:23 PM, Paul Tremblay > wrote: > > > > I was able

Re: [R] installation problem on Ubuntu

2016-04-21 Thread David Winsemius
> On Apr 21, 2016, at 1:23 PM, Paul Tremblay wrote: > > I was able to install the curl library with no problems. However, when I > tried to install ggplot (install.packages("ggplot2")), I got the same > message as earlier, that R can't load internet.so. Is the libcurl

Re: [R] installation problem on Ubuntu

2016-04-21 Thread Paul Tremblay
I was able to install the curl library with no problems. However, when I tried to install ggplot (install.packages("ggplot2")), I got the same message as earlier, that R can't load internet.so. Thanks for your help! On Wed, Apr 20, 2016 at 1:24 PM, Tom Wright wrote: >

Re: [R] installation problem on Ubuntu

2016-04-21 Thread Ista Zahn
Hi Paul, Please keep the list copied so that others might chime in with suggestions. I'm afraid "no success" is too vague to be useful. What did you do, and what errors did you encounter? Best, Ista On Thu, Apr 21, 2016 at 1:48 PM, Paul Tremblay wrote: > Yes, I tried

Re: [R] installation problem on Ubuntu

2016-04-20 Thread Jeff Newmiller
Have you read the CRAN instructions for installing on Ubuntu? Have you read the Posting Guide that mentions the R-sig-debian mailing list and that if you need help compiling R this is not the right list? -- Sent from my phone. Please excuse my brevity. On April 20, 2016 9:36:51 AM PDT, Paul

[R] installation problem on Ubuntu

2016-04-20 Thread Paul Tremblay
I needed to update R so I could install ggplot. I am running Ubuntu 12.04. I cannot upgrade Ubuntu because I am using a work computer. I tried upgrading the normal way: sudo apt-get update sudo apt-get install r-base r-base-dev But this only installed an earlier version. Finally I tried

Re: [R] installation of dplyr

2016-04-20 Thread Ben Tupper
Increasing memory resolved the issue for me. Thanks again, Ben > On Apr 19, 2016, at 4:10 PM, Hadley Wickham wrote: > > You normally see these errors when compiling on a vm that has very > little memory. > Hadley > > On Tue, Apr 19, 2016 at 2:47 PM, Ben Tupper

Re: [R] installation of dplyr

2016-04-19 Thread Ben Tupper
Hi, OK - that can be fixed by our IT whizzes. Thanks, Ben P.S. Thanks for dplyr! > On Apr 19, 2016, at 4:10 PM, Hadley Wickham wrote: > > You normally see these errors when compiling on a vm that has very > little memory. > Hadley > > On Tue, Apr 19, 2016 at 2:47 PM,

Re: [R] installation of dplyr

2016-04-19 Thread Hadley Wickham
You normally see these errors when compiling on a vm that has very little memory. Hadley On Tue, Apr 19, 2016 at 2:47 PM, Ben Tupper wrote: > Hello, > > I am getting a fresh CentOS 6.7 machine set up with all of the goodies for R > 3.2.3, including dplyr package. I am

[R] installation of dplyr

2016-04-19 Thread Ben Tupper
Hello, I am getting a fresh CentOS 6.7 machine set up with all of the goodies for R 3.2.3, including dplyr package. I am unable to successfully install it. Below I show the failed installation using utils::install.packages() and then again using devtools::install_github(). Each yields an

[R] Installation of R Rmpi and snow on cluster running Platform MPI and PBS Pro

2016-01-18 Thread Segovia, Andrea
o=TRUE)     mpi.barrier(0)     if(mpi.comm.size(0) > 1 && !quiet)         slave.hostinfo(1) } .Last <- function(){     if (is.loaded("mpi_initialize")){         if (mpi.comm.size(1) > 1){             print("Please use mpi.close.Rslaves() to close slaves")        

[R] Installation of S-Plus 6.2 on Ubuntu 14.04

2015-12-27 Thread Kim Pilegaard
I have many old datasets, scripts and functions written in S-Plus. I want to transfer these to R. Basically, I want to transfer my old chapters (.Data) entirely to R and have tried with dump(�., oldStyle =T). However, this is not very successful; R cannot digest the dump files entirely.

Re: [R] Installation of S-Plus 6.2 on Ubuntu 14.04

2015-12-27 Thread William Dunlap via R-help
Do you know what sort of S+ objects do not survive the dump-from-S+-source-into-R procedure unscathed? E.g., do you have S4 classes that don't make it or certain classes of data objects? Bill Dunlap TIBCO Software wdunlap tibco.com On Sat, Dec 26, 2015 at 3:17 AM, Kim Pilegaard

[R] CentOS 6.5 x86_64 R installation throwing "Error in download.file(url, destfile = f, quiet = TRUE) : unsupported URL scheme" error

2015-11-01 Thread Damion Reeves
Just wondering if any CRAN or "R" guru out there might have seen something like thisand could advise a potential fix (or advise what, if anything I've missed) ? I've installed pre-req packages without an issue: [hostname ]# *yum install libxml2-devel git svn gtk+-devel gtk2-devel

Re: [R] CentOS 6.5 x86_64 R installation throwing "Error in download.file(url, destfile = f, quiet = TRUE) : unsupported URL scheme" error

2015-11-01 Thread peter dalgaard
3.2.0 is the problem. Support for HTTPS was streamlined in 3.2.2. You either need to choose an HTTP mirror (if you can trust your communication lines -- the reason for the change is that it was a security hole for people with untrusted connections: free wifi, etc.), or figure out how to

Re: [R] Installation R package Rssa from directory

2015-09-12 Thread Jeff Newmiller
Looks to me like you are giving the name of a directory where a file name of a tar.gz (package source) would be required. R prefers to be given the package file rather than an extracted directory of files. Most packages on Windows are used in their binary form ("zip" file), so you would not

Re: [R] Installation R package Rssa from directory

2015-09-12 Thread tonina
Many thanks, Jeff! I install package with install.packages('d:\\Rssa\\Rssa_0.13.zip', repos=NULL) -- View this message in context: http://r.789695.n4.nabble.com/Installation-R-package-Rssa-from-directory-tp4712160p4712174.html Sent from the R help mailing list archive at Nabble.com.

[R] Installation R package Rssa from directory

2015-09-11 Thread tonina
Hello. I'm trying to install R package Rssa from directory install.packages("d:\\Rssa\\", repos=NULL, type="source") But I have an error * installing *binary* package 'Rssa' ... Warning: running command 'cp -R . "E:/Program Files/R/R-3.1.3/library/Rssa" || ( tar cd - .| (cd "E:/Program

Re: [R] installation of package ‘devtools’ had non-zero exit status in a POWERPC

2015-07-17 Thread aidaph
I'm stuck on this and i don't know how to install Curl without any problem. Anyone? -- View this message in context: http://r.789695.n4.nabble.com/installation-of-package-devtools-had-non-zero-exit-status-in-a-POWERPC-tp4709687p4709994.html Sent from the R help mailing list archive at

Re: [R] installation of package ‘devtools’ had non-zero exit status in a POWERPC

2015-07-17 Thread Jeff Newmiller
That is an operating-system configuration question, not a question about R. There are many OSs out there... please find a forum with users of your OS in which to pursue this question. --- Jeff Newmiller

Re: [R] 'Installation of package package had non-zero exit, status' on R-3.2.0 (RStudio Version 0.98.1103) on Ubuntu 12.04 OS

2015-05-01 Thread Prof J C Nash (U30A)
00:50:38 +0530 From: Anirudh Jayaraman aniru...@igidr.ac.in To: Duncan Murdoch murdoch.dun...@gmail.com Cc: r-help@r-project.org Subject: Re: [R] 'Installation of package package had non-zero exit status' on R-3.2.0 (RStudio Version 0.98.1103) on Ubuntu 12.04 OS Message-ID

Re: [R] 'Installation of package package had non-zero exit status' on R-3.2.0 (RStudio Version 0.98.1103) on Ubuntu 12.04 OS

2015-04-30 Thread Duncan Murdoch
On 30/04/2015 2:12 PM, Anirudh Jayaraman wrote: I recently upgraded to *R-3.2.0* from *R-2.14.1* on *Ubuntu 12.04 LTS.* I have been *trying to install some add-on packages* (that weren't installed in the earlier version of R) to R-3.2.0. *but to no avail*, getting repeated error messages. For

[R] 'Installation of package package had non-zero exit status' on R-3.2.0 (RStudio Version 0.98.1103) on Ubuntu 12.04 OS

2015-04-30 Thread Anirudh Jayaraman
I recently upgraded to *R-3.2.0* from *R-2.14.1* on *Ubuntu 12.04 LTS.* I have been *trying to install some add-on packages* (that weren't installed in the earlier version of R) to R-3.2.0. *but to no avail*, getting repeated error messages. For example, *I tried installing swirl*. Here's my

Re: [R] 'Installation of package package had non-zero exit status' on R-3.2.0 (RStudio Version 0.98.1103) on Ubuntu 12.04 OS

2015-04-30 Thread Duncan Murdoch
On 30/04/2015 3:20 PM, Anirudh Jayaraman wrote: In that case, it seems that *libcurl* is not available for R-3.2.0 as I get a message for ** *install.packages(libcurl)* It's not an R package, it's a library that you'll need on your system. package ‘libcurl’ is not available (for R

Re: [R] 'Installation of package package had non-zero exit status' on R-3.2.0 (RStudio Version 0.98.1103) on Ubuntu 12.04 OS

2015-04-30 Thread Anirudh Jayaraman
In that case, it seems that *libcurl* is not available for R-3.2.0 as I get a message for ** *install.packages(libcurl)* package ‘libcurl’ is not available (for R version 3.2.0) Or if on Terminal I run *sudo apt-get install libcurl4-openssl-dev* Package libcurl4-openssl-dev is not

Re: [R] 'Installation of package package had non-zero exit status' on R-3.2.0 (RStudio Version 0.98.1103) on Ubuntu 12.04 OS

2015-04-30 Thread Nordlund, Dan (DSHS/RDA)
-Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Duncan Murdoch Sent: Thursday, April 30, 2015 1:33 PM To: Anirudh Jayaraman Cc: r-help@r-project.org Subject: Re: [R] 'Installation of package package had non-zero exit status' on R-3.2.0 (RStudio

[R] R installation issues

2015-04-22 Thread Kalsbab
Hi, Please help me on this. I have installed R 3.1.2 version (64 bit) and receiving the follwowing error message while launching the Rx64 desktop icon. R for Windows GUI front-end has stopped working. Close the program. The application was unable to start correctly (0xc005) I tried

Re: [R] Installation Help

2014-12-29 Thread Bros
I guess I skipped an option during installation. I removed the program now. Do u think I should choose something else than administrator? From: emorway [via R] [mailto:ml-node+s789695n4701164...@n4.nabble.com] Sent: Monday, December 29, 2014 12:13 AM To: Bros Subject: Re: Installation

Re: [R] Installation Help

2014-12-29 Thread Jeff Newmiller
Let windows prompt you for your password when it is needed... don't run anything as Administrator directly unless you are prepared to fix the problems that occur. --- Jeff NewmillerThe .

  1   2   3   >