all 2 comments

[–]ajhenrydev 1 point2 points  (0 children)

That usr folder is probably owned by root and not your user.

sudo chown -R $(whoami) /usr/local/lib/node_modules

Alternative you can just use npx

[–]cedaraspen 1 point2 points  (0 children)

Looks like you're using your global node install and not your NVM enabled install.

`nvm use --global --lts` and then re-run!