Reputation: 1760
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
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.
Upvotes: 12
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
Reputation: 335
You can try this also:
sudo npm install --global --unsafe-perm ios-deploy
Upvotes: -2
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