Hi, Apologies if it has already been posted. I searched the archives and couldn't find the answer to my problem. I am building a R package and while checking it with R CMD check, I get the following error, * checking whether package 'drCCA' can be installed ... ERROR Installation failed. 00install.out shows following message, ** building package indices ... Error in load(zfile, envir = envir) : ReadItem: unknown type 203 Execution halted ERROR: installing package indices failed Does somebody has any idea what it means?? Thanks a lot. Regards, Abhishek Tripathi Researcher Department of Computer Science University of Helsinki
R CMD check error, Readitem unknown type 203
3 messages · Abhishek Tripathi, Brian Ripley, Duncan Murdoch
On Wed, 12 Dec 2007, Abhishek Tripathi wrote:
Hi, Apologies if it has already been posted. I searched the archives and couldn't find the answer to my problem. I am building a R package and while checking it with R CMD check, I get the following error, * checking whether package 'drCCA' can be installed ... ERROR Installation failed. 00install.out shows following message, ** building package indices ... Error in load(zfile, envir = envir) : ReadItem: unknown type 203 Execution halted ERROR: installing package indices failed Does somebody has any idea what it means??
It means your package is corrupt, most likely something in the data files.
Thanks a lot. Regards, Abhishek Tripathi Researcher Department of Computer Science University of Helsinki
______________________________________________ R-devel at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel
Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595
On 12/12/2007 4:55 AM, Abhishek Tripathi wrote:
Hi, Apologies if it has already been posted. I searched the archives and couldn't find the answer to my problem. I am building a R package and while checking it with R CMD check, I get the following error, * checking whether package 'drCCA' can be installed ... ERROR Installation failed. 00install.out shows following message, ** building package indices ... Error in load(zfile, envir = envir) : ReadItem: unknown type 203 Execution halted ERROR: installing package indices failed Does somebody has any idea what it means??
I would guess you are trying to build it in an obsolete version of R. It probably contains binary data created in a newer version. Duncan Murdoch