Rodrigo Rubio
Rodrigo Rubio

Reputation: 1760

ios-deploy not found under OS X El Capitan

ios-deploy not found error when running from command line "ionic run ios --device" under El Capitan. Have re-installed ionic and node, still no luck.

Upvotes: 10

Views: 12879

Answers (4)

Twyx
Twyx

Reputation: 729

I was also having this problem building on Catalina. Turns out all I had to do was disconnect my iPhone from the USB port.

  1. Disconnect any iOS devices from USB
  2. Run the command and wait until it finishes
  3. Reconnect the device

Upvotes: 12

snowflake
snowflake

Reputation: 55

With Catalina 10.15.1 I got it working by installing ios-deploy with brew.

npm uninstall -g ios-deploy   
brew install ios-deploy

Upvotes: 3

Mohammad Zakaria
Mohammad Zakaria

Reputation: 335

You can try this also:

sudo npm install --global --unsafe-perm ios-deploy

Upvotes: -2

Rodrigo Rubio
Rodrigo Rubio

Reputation: 1760

After a few tries of re-installing my environment and even compiling xcode, the following did the trick.

From your command line enter the following:

sudo npm install -g ios-deploy --unsafe-perm=true --allow-root

Upvotes: 47

Related Questions