Skip to content

Instantly share code, notes, and snippets.

@zr0n
Last active January 30, 2026 16:33
Show Gist options
  • Select an option

  • Save zr0n/adb7cf1ec0175fcb3fd83cfff06de766 to your computer and use it in GitHub Desktop.

Select an option

Save zr0n/adb7cf1ec0175fcb3fd83cfff06de766 to your computer and use it in GitHub Desktop.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
# 1. Fazer backup dos binários originais do Unreal
cd "/Users/Shared/Epic Games/UE_5.7/Engine/Extras/ThirdPartyNotUE/libimobiledevice/Mac/"
sudo mkdir backup
sudo mv idevice_id backup/
sudo mv ideviceinstaller backup/ 2>/dev/null
# 2. Criar links simbólicos para os binários do Homebrew
sudo ln -s /opt/homebrew/bin/idevice_id idevice_id
sudo ln -s /opt/homebrew/bin/ideviceinstaller ideviceinstaller 2>/dev/null
# 3. Verificar se funcionou
./idevice_id --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment