npm WARN lifecycle [email protected]~postinstall: cannot run in wd %s %s (wd=%s) [email protected] gulp check.versions && gulp build.bundle.rxjs && npm prune && gulp webdriver && npm run nativescript-install && node tools/install.js /Users/xxxx/Downloads/angular-seed-advanced-master
Asked
Active
Viewed 5,802 times
1 Answers
7
The question doesn't provide much context but I experienced the same problem when running
npm install
to build the Angular Seed Project inside a Docker Container. In my case it was due to running npm with root privileges.
To try to resolve the issue check this answer.
What worked for me was:
option 1 of the above answer:
npm install --unsafe-perm
not running npm with root privileges