events.js: 141 throw er; // Unhandled 'error' event

前端 未结 8 667

I\'m trying to run node 4.2.2 on a Mac OS and i\'m not understanding why every time i get this error message:

events.js:141
      throw er; // Unhandled \'er         


        
8条回答
  •  难免孤独
    2020-12-24 12:26

    ENOENT means that spawn was unable to find the binary you are looking for. Make sure that what ever you are trying to spawn is in your path.

    In this case you probably don't have gifsicle installed.

提交回复
热议问题