2016-11-03 104 views
1

所以我尝试用NPM IOS部署,我有这样的错误:IOS部署安装失败

sudo npm install -g ios-deploy 
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.0.0 
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "-g" "ios-deploy" 
npm ERR! node v6.7.0 
npm ERR! npm v3.10.3 
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 

什么想法?

回答

7

尝试:

sudo npm install -g ios-deploy --unsafe-perm=true 
+0

谢谢SOOO了!有效 – MaxF01234