Swati Maheshwari
Swati Maheshwari

Reputation: 85

Ionic ,Node js build ios error

I am trying to create a basic mobile app using steps provided on this link

Everything worked fine till step 3. But on step 3

$ ionic build ios

is giving error as under

✗ (node:9776) 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.

Error: xcodebuild was not found. Please install version 6.0.0 or greater from App Store

Error Image

I am already using the latest version of node.js ie; 6.2.0. Am I missing anything?

Upvotes: 2

Views: 4868

Answers (1)

theaccordance
theaccordance

Reputation: 889

Simply put, you can't compile iOS apps locally using a Windows Machine. You'll either need to compile those apps using a Mac, or a cloud-compiler service, like PhoneGap Build or Ionic Platform.

Upvotes: 2

Related Questions