2016-07-07 9 views
0

公式の「Getting Started」Ionic2ドキュメントの「インストール」セクションに記載されている手順に従ってIonic2環境をセットアップしようとしています。iOs用のIonic2ビルドが失敗しました

私はMacのEl Captainバージョン10.11.5と最新のxCodeバージョン(7.3.1)がインストールされています。

私はコルドーバをインストールした後にionic platform add iosコマンドを正常に実行しました。私は、次のコマンドを実行すると(セットアップガイドに述べたように)

ionic emulate ios私は、そのログですその後

(node:38155) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version. 

Running 'emulate:before' gulp task before emulate 
[18:17:00] Starting 'clean'... 
[18:17:00] Finished 'clean' after 45 ms 
[18:17:00] Starting 'build'... 
[18:17:00] Starting 'sass'... 
[18:17:00] Starting 'html'... 
[18:17:00] Starting 'fonts'... 
[18:17:00] Starting 'scripts'... 
[18:17:00] Finished 'html' after 80 ms 
[18:17:00] Finished 'scripts' after 78 ms 
[18:17:00] Finished 'fonts' after 88 ms 
[18:17:01] Finished 'sass' after 901 ms 
[18:17:07] Finished 'build' after 6.73 s 
[18:17:07] Starting 'emulate:before'... 
[18:17:07] Finished 'emulate:before' after 4.22 μs 


You have been opted out of telemetry. To change this, run: cordova telemetry on. 

Running command: /Users/enrico.piccinin/work/dbs/examples/ionic2/cutePuppyPics/hooks/after_prepare/010_add_platform_class.js /Users/enrico.piccinin/work/dbs/examples/ionic2/cutePuppyPics 


add to body class: platform-ios 

Error: 


Caught exception: 
undefined 

私は少しサーフィン、次のコマンドを実行するための提案を見つける謎のエラーが出るnpm install -g ios-deploy --unsafe-perm=true一度それをやると、これは私が得るものです

> [email protected] preinstall /usr/local/lib/node_modules/.staging/ios-deploy-298c9491 
> ./src/scripts/check_reqs.js && xcodebuild 

/usr/local/lib/node_modules/.staging/ios-deploy-298c9491/src/scripts/check_reqs.js:29 
     var ver = arr[1]; 
        ^

TypeError: Cannot read property '1' of null 
    at ChildProcess.<anonymous> (/usr/local/lib/node_modules/.staging/ios-deploy-298c9491/src/scripts/check_reqs.js:29:16) 
    at emitTwo (events.js:106:13) 
    at ChildProcess.emit (events.js:191:7) 
    at maybeClose (internal/child_process.js:852:16) 
    at Socket.<anonymous> (internal/child_process.js:323:11) 
    at emitOne (events.js:96:13) 
    at Socket.emit (events.js:188:7) 
    at Pipe._handle.close [as _onclose] (net.js:492:12) 
npm ERR! Darwin 15.5.0 
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "-g" "ios-deploy" "--unsafe-perm=true" 
npm ERR! node v6.3.0 
npm ERR! npm v3.10.3 
npm ERR! code ELIFECYCLE 

npm ERR! [email protected] preinstall: `./src/scripts/check_reqs.js && xcodebuild` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] preinstall script './src/scripts/check_reqs.js && xcodebuild'. 
npm ERR! Make sure you have the latest version of node.js and npm installed. 
npm ERR! If you do, this is most likely a problem with the ios-deploy package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  ./src/scripts/check_reqs.js && xcodebuild 

ところで、Android用の建物は同じマシンで正常に動作します。

何が間違っている可能性がありますか?任意のヘルプ

答えて

0

を事前に

どうもありがとうあなたはXCodeのからプロジェクトを実行しようとしたことがありますか? Macの場合、アプリケーションを実行するには、terminal:ionic build iosから実行してください。その後、XCodeからプロジェクトを実行します。すべて正常に動作します

関連する問題