Launch it and you will get this window with the MySQL Utils icon at the top right
When you click in the MySQL Utilities.... OPS!! it does not work!
OK, let's find the connector googleing it. And find it
[EDIT] I have just missed that the mysql-connector-python is also in cask and you can install with `brew cask install mysql-connector-python`
BUT IT DID NOT WORK FOR ME
$ brew search mysql
automysqlbackup mysql ✔ mysql++ mysql-cluster mysql-connector-c mysql-connector-c++ mysql-sandbox mysql-search-replace mysqltuner
homebrew/php/php53-mysqlnd_ms homebrew/php/php55-mysqlnd_ms homebrew/versions/mysql51 homebrew/versions/mysql56 Caskroom/cask/mysql-utilities Caskroom/cask/navicat-for-mysql
homebrew/php/php54-mysqlnd_ms homebrew/php/php56-mysqlnd_ms homebrew/versions/mysql55 Caskroom/cask/mysql-connector-python Caskroom/cask/mysqlworkbench
$ brew cask install mysql-connector-python
Error: No available Cask for mysql-connector-python
Error: nothing to install
choose download and and then copy the link from "no thanks, just start download"
Go back to your shell and download it (you can do it in the mysql-utils dir just to have all together)
Now when you click in the MySQL-Utils you have a working connection and you see this in the launched terminal
I have tried to install the connector from python using pip but it did not work due a problem with ConfigParser. I did not investigate it further because I have already a working solution.
MacBook-Pro:[~]
$ pip3 install MySQL-python
Collecting MySQL-python
Downloading MySQL-python-1.2.5.zip (108kB)
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 20, in <module>
File "/private/var/folders/m0/spbgfzvd17jdfqgx90w1_hx40000gn/T/pip-build-0nif_qmi/MySQL-python/setup.py", line 13, in <module>
from setup_posix import get_config
File "/private/var/folders/m0/spbgfzvd17jdfqgx90w1_hx40000gn/T/pip-build-0nif_qmi/MySQL-python/setup_posix.py", line 2, in <module>
from ConfigParser import SafeConfigParser
ImportError: No module named 'ConfigParser'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/m0/spbgfzvd17jdfqgx90w1_hx40000gn/T/pip-build-0nif_qmi/MySQL-python
You are using pip version 7.1.2, however version 8.0.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
MacBook-Pro:[~]
$ pip3 install ConfigParser
Collecting ConfigParser
Downloading configparser-3.3.0r2.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "/usr/local/lib/python3.5/site-packages/setuptools/__init__.py", line 5, in <module>
import distutils.core
File "/usr/local/Cellar/python3/3.5.0/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/core.py", line 18, in <module>
from distutils.config import PyPIRCCommand
File "/usr/local/Cellar/python3/3.5.0/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/config.py", line 7, in <module>
from configparser import ConfigParser
File "/private/var/folders/m0/spbgfzvd17jdfqgx90w1_hx40000gn/T/pip-build-0ouo8j8z/ConfigParser/configparser.py", line 397
_KEYCRE = re.compile(ur"%\(([^)]+)\)s")
^
SyntaxError: invalid syntax
----------------------------------------