asciinema / asciicast2gif

Generate GIF animations from asciicasts (asciinema recordings)
MIT License
1.2k stars 83 forks source link

Install with npm failing #39

Closed standage closed 6 years ago

standage commented 6 years ago

When I try to install with npm I get some warning messages. I'm not sure which of these is critical, if any, but I cannot execute asciicast2gif after the install.

See the following terminal recording because of course. :-)

asciicast

cedricium commented 6 years ago

I too am seeing this issue. My specs:

$ node -v  # v8.11.1
$ npm -v   # 5.6.0
ku1ik commented 6 years ago

The npm install command in readme didn't have -g (or --global) and so it didn't install the binary for you. It's been fixed in #40.

Can you try with npm install -g asciicast2gif again?

cedricium commented 6 years ago

@sickill can confirm that worked for me 👍

standage commented 6 years ago

Likewise. Thanks!