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:
Visit http://www.mono-project.com/download/stable/ and download the Mono Universal Installer
Once downloaded, run the installer MonoFramework-MDK-4.2.1.102.macos10.xamarin.universal.pkg
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.
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:
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)