I am trying to install the latest version of gsubfn from source file on my CentOS machine. It installs with out any issues as follows:
> install.packages("/home/ravishankarr/PraaS/gsubfn_0.6-6.tar.gz", repos = NULL, type="source")
* installing *source* package 'gsubfn' ...
** package 'gsubfn' successfully unpacked and MD5 sums checked
** R
** demo
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded
* DONE (gsubfn)
However, when I load this package, I get the following message:
> library(gsubfn)
Loading required package: proto
Could not load tcltk. Will use slower R code instead.
What does this warning message mean? Does this slow down the codes using this package? If so, is there a way to get rid of this? Would appreciate any help on this.