Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Appium saying install libimobiledevice but terminal says already installed

Tags:

ios

device

appium

I am trying to run Appium on a real iOS device. In the logs I get the following error:

The 'idevice_id' program is not installed. If you are running a real device test it is necessary. Install with 'brew install libimobiledevice --HEAD.

I then run brew install libimobiledevice --HEAD in the terminal and get the following warning:

libimobiledevice HEAD-5a85432_2 is already installed

Anyone know a way around this infinite loop of warnings?

like image 682
Charlie Seligman Avatar asked Sep 14 '17 15:09

Charlie Seligman


1 Answers

Go to terminal and type

brew install --HEAD libimobiledevice

This will work!

like image 156
Kiran Sk Avatar answered Sep 19 '22 18:09

Kiran Sk