Rgtsvm icon indicating copy to clipboard operation
Rgtsvm copied to clipboard

easier installation is required

Open icarocd opened this issue 6 years ago • 2 comments

It should be possible the use of install.packages("Rgtsvm")

icarocd avatar Feb 03 '18 03:02 icarocd

The package has not been released on CRAN, so you can't use install.package easily. But you can try install_github in devtools library:

> library(devtools)
> install_github("Danko-lab/Rgtsvm/Rgtsvm", args="--configure-args='--with-cuda-home=/usr/local/cuda-8.0 --with-boost-home=/usr'" )

Please change your configure values for '--with-cuda-home' and '--with-boost-home' in above command.

Let me know your results.

wzhy2000 avatar Feb 05 '18 22:02 wzhy2000

I had to install libboost-all-dev, then R package bit64, then configure the two files to sm_50, so that I could install it manually. Thanks.

icarocd avatar Feb 06 '18 02:02 icarocd