How to install mysql-connector-python without pip
git clone git@github.com :mysql/mysql-connector-python.git cd mysql-connector-python python setup.py install
In fact, you can check how this works with pip freeze or pip list . If you want to install a specific version, you can check the available versions with git tag -n , and then switch to one using, for example, git checkout 2.0.4 , and then run setup.py again.
Background
http://bugs.mysql.com/bug.php?id=79811 .
Seeing that you have the same problem as me, I decided to investigate the problem with Oracle. I noticed that over the past few years they had several tickets for errors, and someone commented on a broken installation yesterday. Unfortunately, these tickets were closed with "no errors", and here we are today, again with broken links.
Update
In response to my big bid, this seems to be the root of the problem:
PyPI decided to no longer allow external advertising projects. I had an email about this a few months ago.
source share