Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have just installed pandoc using gem install pandoc-ruby and have tried running this sample script:

require 'pandoc-ruby'
@converter = PandocRuby.new('# Markdown Title', :from => :markdown, :to => :rst)
puts @converter.convert

I get the following errors:

open3.rb:202: in spawn': No such file or directory - pandoc --from=markdown --to=rst (Errno::ENOENT)
open3.rb:202: inpopen_run'
open3.rb:90: in popen3'
pandoc-ruby.rb:101: inexecute'
pandoc-ruby.rb:77: in convert'
pandoc test.rb:3: in'

I assume that as the script is one of the ones given as an example on the pandoc-ruby github that there must be something wrong with the installation. Does anyone know how to fix this?

Many thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

The error looks like Ruby is unable to find the pandoc executable.

To tell Pandoc where to find the executable, use the bin_path method:

PandocRuby.bin_path='/usr/local/bin'

Set bin_path to the directory where you put the pandoc executable.

share|improve this answer
Thanks. You were right, it could not find the executable – pdoak Apr 7 '12 at 9:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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