Skip to content

Instantly share code, notes, and snippets.

@kentakang
Last active March 30, 2024 20:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentakang/3523c7ea96cd0a1c6394f75c74329226 to your computer and use it in GitHub Desktop.
Save kentakang/3523c7ea96cd0a1c6394f75c74329226 to your computer and use it in GitHub Desktop.
Run DJMAX Respect V on macOS Sonoma

Running DJMAX Respect V on macOS Sonoma

Environment

  • MacBook Pro 16-inch, 2021 (M1 Pro, RAM 16GB)
  • macOS Sonoma 14.0 (stable)

Step

Install rosetta

Install rosetta on your terminal using the following commands.

softwareupdate --install-rosetta

Install homebrew (x86_64)

Install the x86 version homebrew on your terminal using the following commands.

arch -x86_64 zsh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

And open the zshrc file.

vi ~/.zshrc

Add the following lines at the bottom of the file.

if [ "$(arch)" = "arm64" ]; then
    eval "$(/opt/homebrew/bin/brew shellenv)"
else
    eval "$(/usr/local/bin/brew shellenv)"
fi

And restart zsh with arch commands.

arch -x86_64 zsh

Install GPTK

Download the apple tap on your terminal using the following commands.

brew tap apple/apple https://github.com/apple/homebrew-apple

Install Game porting toolkit formula, it takes a long time.

brew -v install apple/apple/game-porting-toolkit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment