I want to install latest version (3.2) of R statistical package ( https://www.r-project.org/ ) but only version 3.0 is available in repository.
The source is available (https://cran.r-project.org/src/base/R-3/). Should I try to compile it? I can't find list of dependencies needed. Binaries are not available for Slackware or Salix from its homepage (https://cran.rstudio.com/).
R version 3.2 binary is available from slackonly repository: http://pkgs.org/slackware-14.1/slackonl ... k.txz.html . Can I download it and install it using # installpkg or upgradepkg command?
How can I manage to install latest version (3.2) in Salix ?
How to install latest version of R statistical package
Re: How to install latest version of R statistical package
What architecture do you use? 32bit or 64bit?
If you're on 64bit, you're lucky, I have the latest R packaged already. Get it from here:
http://pnboy.pinguix.com/gapan/salix/R/
The dependencies shouldn't be different than the R package you already have.
If you want a 32bit package, I could make one, but you should be able to get the scripts from your /usr/src/R-$version/, edit the pkgver in the SLKBUILD file and run:
That should build a package for you.
I also have packages for the latest version of RStudio (released today) if you're interested...
If you're on 64bit, you're lucky, I have the latest R packaged already. Get it from here:
http://pnboy.pinguix.com/gapan/salix/R/
The dependencies shouldn't be different than the R package you already have.
If you want a 32bit package, I could make one, but you should be able to get the scripts from your /usr/src/R-$version/, edit the pkgver in the SLKBUILD file and run:
Code: Select all
fakeroot slkbuild -X
I also have packages for the latest version of RStudio (released today) if you're interested...
Re: How to install latest version of R statistical package
I am using Salix 32bit. I will prefer if you can build and make available the latest version in your repository. Is RStudio available in the repository? I do not have access to my Salix system right now but I cannot see it in pkgs.org under Salix (http://pkgs.org/search/?query=RStudio&type=smart). I would like to install Rstudio as well. Thanks.
Re: How to install latest version of R statistical package
OK, so I have uploaded 32bit packages for R. Same URL as before.
For rstudio, you can look here:
http://pnboy.pinguix.com/gapan/salix/rstudio-desktop/
And you will also need pandoc:
http://pnboy.pinguix.com/gapan/salix/pandoc/
For rstudio, you can look here:
http://pnboy.pinguix.com/gapan/salix/rstudio-desktop/
And you will also need pandoc:
http://pnboy.pinguix.com/gapan/salix/pandoc/
Re: How to install latest version of R statistical package
"spi --show R" is still showing version 3.0:
Code: Select all
Package Name: R
Package Mirror: http://salix.mirror.garr.it/mirrors/salix/i486/14.1/
Package Priority: Preferred
Package Location: ./salix/xap
Package Version: 3.0.2-i486-1gv
Package Size: 32514 K
Package Installed Size: 130056 K
...
Re: How to install latest version of R statistical package
rsal, gapan has packaged it specially for you.
It's not in the repositories, though, so spi won't do the trick.
Download the package from the link in his post, and install it:
You'll also need to exclude the package, so it isn't downgraded to the repository version every time you do an upgrade. Instructions for this are in the Salix Startup Guide.

Download the package from the link in his post, and install it:
Code: Select all
sudo spkg -u download_path/name_of_package.txz
Re: How to install latest version of R statistical package
I get it. Thanks a lot.