Error:libimobiledevice and idevi
2019-06-23 本文已影响0人
survivorsfyh
安装 Flutter 的时候在 Xcode IED 处遇到了一些小的插件缺失问题,具体异常提示如下:
iOS toolchain - develop for iOS devices (Xcode 10.1)
✗ libimobiledevice and ideviceinstaller are not installed. To install with
Brew, run:
brew update
brew install --HEAD usbmuxd
brew link usbmuxd
brew install --HEAD libimobiledevice
brew install ideviceinstaller
✗ ios-deploy not installed. To install:
brew install ios-deploy
解决办法:
通过如上 flutter doctor 的诊断信息中可以清晰的得知有插件未安装,按照上面提示信息中的内容一次执行了 libimobiledevice 、 ideviceinstaller 和 ios-deploy 三项的 install;
首先,在终端中依次执行如下三个 instal 操作;
brew install --HEAD libimobiledevice
brew install ideviceinstaller
brew install ios-deploy
其次,经过漫长的安装等待过后再次跟终端中执行 flutter doctor,搞定!
最后,继续像处理 Xcode 的方式一样处理 Android Studio 中的异常问题 (:
以上便是此次内容的分享,希望能对大家有所帮助,也在慢慢初探 Flutter 中哈。