Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

npm iOS-deploy install issues

Tags:

npm

npm WARN lifecycle [email protected]~preinstall: cannot run in wd %s %s (wd=%s) [email protected] ./src/scripts/check_reqs.js && xcodebuild /usr/local/lib/node_modules/.staging/ios-deploy-298c9491 npm ERR! Darwin 16.4.0 npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "-g" "ios-deploy" npm ERR! node v6.9.5 npm ERR! npm v3.10.10 npm ERR! path /usr/local/lib/node_modules/ios-deploy/build/Release/ios-deploy npm ERR! code ENOENT npm ERR! errno -2 npm ERR! syscall chmod

npm ERR! enoent ENOENT: no such file or directory, chmod '/usr/local/lib/node_modules/ios-deploy/build/Release/ios-deploy' npm ERR! enoent ENOENT: no such file or directory, chmod '/usr/local/lib/node_modules/ios-deploy/build/Release/ios-deploy' npm ERR! enoent This is most likely not a problem with npm itself npm ERR! enoent and is related to npm not being able to find a file. npm ERR! enoent

This is the error message that I am getting any help would be great thanks

like image 938
Chad Brown Avatar asked Feb 13 '17 20:02

Chad Brown


2 Answers

If you have OS X 10.11 El Capitan or greater, then execute the npm command with the --unsafe-perm flag, and then it should work:

npm install -g ios-deploy --unsafe-perm=true

like image 84
SaWo Avatar answered Oct 30 '22 00:10

SaWo


This may help you...

npm install -g ios-deploy --unsafe-perm=true

               or

npm install -g ios-deploy --allow-root

like image 30
Priyank Gujarati Avatar answered Oct 29 '22 22:10

Priyank Gujarati