The Windows installer of McMyAdmin 2 is much faster and easier to run, but it’s not impossible for Mac OS X users to run either with just a few extra steps:

  1. Visit http://www.mono-project.com/download/stable/  and download the Mono Universal Installer

  2. Once downloaded, run the installer MonoFramework-MDK-4.2.1.102.macos10.xamarin.universal.pkg

  3. Once Mono is installed, open up Terminal (found in Applications > Utilities)Type in the following commands into the terminal, pressing the return key after each line:

    mkdir ~/McMyAdmin
    
    cd ~/McMyAdmin
    
    wget <http://mcmyadmin.com/Downloads/MCMA2-Latest.zip>
    
    unzip MCMA2-Latest.zip
    
    rm MCMA2-Latest.zip
    
    mono McMyAdmin.exe -setpass [YOURPASSWORD] -configonly
    

    Note that [YOURPASSWORD] **should be substituted for an actual password that you’re going to use.

  4. Start McMyAdmin by typing the following command into Terminal:

    cd ~/McMyAdmin; mono McMyAdmin.exe
    

NB: If the above wget command doesn't work for you, you most likely don't have it installed. To install it, first start by installing Homebrew.

/usr/bin/ruby -e "$(curl -fsSL <https://raw.githubusercontent.com/Homebrew/install/master/install>)"

Once that's installed, you just need to use homebrew to install wget:

brew install wget

and then you're good! You may need to reboot for the changes to take effect.

NB: On some Mac systems, you may not have a JDK (Java Developer Kit) installed and might come up with this warning:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/58a01ede-78fd-4914-99bf-90d8d7ed3b95/Screen_Shot_2018-03-21_at_10.32.17.png

If that's the case, follow the More Info... link provided by the pop-up to Download Java for Mac OS X (https://www.java.com/en/download/mac_download.jsp)