Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: zipping up workbook failed when trying to write.xlsx

Tags:

r

excel

I was trying to write a xlsx file with write.xlsx and I get this error:

Error: zipping up workbook failed. Please make sure Rtools is installed or a zip application is available to R.
     Try installr::install.rtools() on Windows.

package ‘Rtools’ is not available (for R version 3.1.2) 

What should I do now to fix this?

EDIT: I install Rtools:

>installr::install.rtools()

No need to install Rtools - You've got the relevant version of Rtools installed

but still I get that error after write.xlsx

like image 946
user3806649 Avatar asked Jan 14 '15 21:01

user3806649


3 Answers

You should check the R_ZIPCMD system variable:

Sys.getenv("R_ZIPCMD", "zip")   

The default value: "zip". But it can happen that you have to set the environment variable. If you know exactly the location, you can set it:

Sys.setenv(R_ZIPCMD= "C:/SOMETHING_PATH/Rtools/bin/zip")   

I had the same problem, but setting the R_ZIPCMD solved it.

like image 88
user2408209 Avatar answered Nov 06 '22 09:11

user2408209


Install Rtools (for windows) from this location http://cran.r-project.org/bin/windows/Rtools/ Download the one compatible with your current version of R. While installing check the box for changing the path variable or add "c:\Rtools\bin;c:\Rtools\gcc-4.6.3\bin;" to path variable afterwards. Start new R session...that works with me..hope this helps..

like image 40
Aniket Avatar answered Nov 06 '22 08:11

Aniket


Try that before write.xlsx:

detach(package:openxlsx)

library(xlsx)
like image 5
Tayeb Avatar answered Nov 06 '22 10:11

Tayeb