I have an org-mode document that I want to convert to open Document format. When I try to do this (ctrl+c+e+o) I get an error message:

Executeable "zip" needed for creating OpenDocument files. Aborting.

I have p7zip installed on my machine but I don't know how to tell emacs it is there. I'm not sure what org-mode want to do so I'm not sure what to configure in .emacs.

Thanks

link|improve this question

59% accept rate
If you run zip from the command line (dos-prompt if you're in Windows as you seem to be) does it recognize it as a command or program? – Jonathan Leech-Pepin Dec 27 '11 at 16:18
feedback

2 Answers

up vote 6 down vote accepted

Your p7zip executable must be in Emacs exec-path variable, so that Emacs can find it.

Also, the executable must be called "zip" since it is hard-coded in the org-odt-init-outfile function.

So check the setting of exec-path first to make sure it includes the location of your zip executable.

`M-x customize-variable RET exec-path RET`
link|improve this answer
feedback

You need Info-ZIP. See http://lists.gnu.org/archive/html/emacs-orgmode/2011-07/msg00485.html

p7zip may not be compatible with zip command-line utility, if I go by this post: http://sourceforge.net/projects/sevenzip/forums/forum/45797/topic/1521207?message=3786349. So, I think, p7zip may not be a viable option here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.