Я имею дело с ошибками flutter doctor и пытаюсь выполнить brew install --HEAD libimoviledevice но это никогда не заканчивается.

Вот результат flutter doctor .

[✓] Flutter (Channel stable, v1.0.0, on Mac OS X 10.14 18A391, locale ja-JP)
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[!] 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
[✓] Android Studio (version 3.1)
[✓] IntelliJ IDEA Ultimate Edition (version 2018.2.5)
[!] Connected device
    ! No devices available

! Doctor found issues in 2 categories.

А ниже приведены результаты brew install --HEAD libimoviledevice --verbose .

❯ brew install --HEAD libimobiledevice --verbose
==> Installing dependencies for libimobiledevice: python and libxml2
==> Installing libimobiledevice dependency: python
Warning: Building python from source:
  The bottle needs the Apple Command Line Tools to be installed.
  You can install them, if desired, with:
    xcode-select --install

// abbreviated
==> Downloading https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tgz
/usr/bin/curl -q --show-error --user-agent Homebrew/1.9.2\ \(Macintosh\;\ Intel\ Mac\ OS\ X\ 10.14\)\ curl/7.54.0 --fail --location --remote-time --continue-at 0 --output /Users/xxx/Library/Caches/Homebrew/downloads/xxxx--Python-3.7.2.tgz.incomplete https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tgz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 21.8M  100 21.8M    0     0  10.4M      0  0:00:02  0:00:02 --:--:-- 10.4M
==> Verifying xxx--Python-3.7.2.tgz checksum
tar xf /Users/xxx/Library/Caches/Homebrew/downloads/xxx--Python-3.7.2.tgz -C /private/tmp/d20190115-44736-1ks08rb
cp -pR /private/tmp/d20190115-44736-1ks08rb/Python-3.7.2/. /private/tmp/python-20190115-44736-1tlag4f/Python-3.7.2

Он всегда зависает при выполнении команды cp. Я удалил кеш-файлы homebrew и просто оставил на несколько часов, как есть, но ситуация никогда не меняется.

Любые предложения или советы будут полностью оценены. Заранее спасибо!

0