Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ios-deploy not found under OS X El Capitan

Tags:

ios

ionic

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.

like image 964
Rodrigo Rubio Avatar asked Jan 12 '16 00:01

Rodrigo Rubio


People also ask

What is IOS-deploy?

The ios-deploy tools allow you to launch iOS apps on an iOS Device from the command-line. Install ios-deploy via Homebrew by running: $ brew install ios-deploy.


2 Answers

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
like image 194
Twyx Avatar answered Oct 09 '22 00:10

Twyx


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
like image 25
Rodrigo Rubio Avatar answered Oct 08 '22 22:10

Rodrigo Rubio