Macでpipからmysql-connector-pythonのインストールに失敗したのでメモ
$ pip search mysql
mysql-connector-python (2.0.4) - MySQL driver written in Python
# 検索して出てくるからインストールできると思った
$ pip install mysql-connector-python==2.0.4
Collecting mysql-connector-python==2.0.4
Could not find a version that satisfies the requirement mysql-connector-python==2.0.4 (from versions: )
No matching distribution found for mysql-connector-python==2.0.4
# 検索結果にいたのにMac用に用意されていなかったためかエラーに。
# バージョン未指定でも同様
# 導入中のPythonのバージョンに依存したものかもしれない。(自分はpython2.7.10で確認)
似たような詰まり方をされている方がいたので、真似っこしたらすんなり解消
(参考:StackOverFlow - How do you install mysql-connector-python)
$ git clone https://github.com/mysql/mysql-connector-python.git
$ cd mysql-connector-python
$ python ./setup.py build
$ sudo python ./setup.py install
$ python
>>> import mysql.connector as msc
>>> msc.__version__
'2.1.3'