58

I get that message every time when trying to install zapier-cli. Can someone help me with solving the issue?

enter image description here

DeiDei
  • 10,205
  • 6
  • 55
  • 80
D K
  • 581
  • 1
  • 4
  • 3

3 Answers3

64

I think you need to manually install ajv or update it to version 6 if you already have a lower version installed

npm i ajv

I had a similar issue so I installed it manually and everything worked for me

Novinyo Amegadje
  • 699
  • 4
  • 11
18

David here, from the Zapier Platform team. It looks like this is a bug with npm itself. Updating npm (npm i -g npm) or manually installing ajv (npm i -g ajv@6) should resolve the warning.

xavdid
  • 5,092
  • 3
  • 20
  • 32
10

Problems: npm WARN ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0 but none is installed.
You must install peer dependencies by yourself.
You missed the dependencies of ajv@^6.0.0
Just install it :

npm install ajv@^6.0.0
Mr.True
  • 329
  • 3
  • 9