Skip to content

Instantly share code, notes, and snippets.

@jimhester
Last active October 22, 2020 18:31
Show Gist options
  • Save jimhester/968208210c64dac70c0d991a9d42f645 to your computer and use it in GitHub Desktop.
Save jimhester/968208210c64dac70c0d991a9d42f645 to your computer and use it in GitHub Desktop.
# the --recursive is important, this has a submodule!
git clone --recursive https://github.com/asciinema/asciicast2gif.git
cd asciicast2gif
# If you forget to use --recursive you can do
git submodule init
git submodule update
# install npm dependencies
npm install
# install leiningen
brew install leiningen
brew install imagemagick
# build scripts
lein cljsbuild once main && lein cljsbuild once page
# Thats it!
./asciicast2gif
@anthonybaldwin
Copy link

anthonybaldwin commented Oct 22, 2020

line 7 has a typo; should be submodule. I also needed ImageMagick as well: brew install ImageMagick

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment