You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here we mask the fact that its ARM64. When we do that, we need to ensure the emulator is installed:
Here is some sample bash with how it might be done:
if /usr/bin/pgrep oahd >/dev/null 2>&1; then
echo "Rosetta is already installed and running. Nothing to do."
else
/usr/sbin/softwareupdate –install-rosetta –agree-to-license
if [[ $? -eq 0 ]]; then
echo "Rosetta has been successfully installed."
else
echo "Rosetta installation failed!"
exitcode=1
fi
fi
The text was updated successfully, but these errors were encountered:
Here we mask the fact that its ARM64. When we do that, we need to ensure the emulator is installed:
Here is some sample bash with how it might be done:
The text was updated successfully, but these errors were encountered: