apexatoll / aoc-cli

Command line interface for Advent of Code, built in Ruby using Kangaru
MIT License
55 stars 2 forks source link

Initializing a year tells me "no such file or directory - pandoc" #2

Closed agargiulo closed 3 years ago

agargiulo commented 3 years ago
[10:14:06] % bundle exec aoc -y 2020
No such file or directory - pandoc

Meta file was created as such:

[10:14:31] % less .meta
dir=>ROOT
user=>agargiulo
year=>2020

Running ruby 2.7.2 on macOS Big Sur 11.2.1 To install, I added gem 'aoc_cli' to my Gemfile and ran bundle install

apexatoll commented 3 years ago

Pandoc is one of aoc-cli's dependencies, if you use homebrew you can install it with brew install pandoc. Otherwise install here https://pandoc.org/installing.html

agargiulo commented 3 years ago

I see, so that's separate from the gem pandoc-ruby?

apexatoll commented 3 years ago

Yes, pandoc-ruby is just a wrapper for pandoc in Ruby :)

agargiulo commented 3 years ago

Okay thanks. That fixed my issue :D