Category: programming

Installing MySQL for Python in Ubuntu

Whilst on the grind this evening, hacking on some Python code in a newly-installed Ubuntu virtual machine, I needed to install MySQL for Python. Building the package, pre-installation, requires mysql_config — which I had some difficulty locating in the repositories. After flailing about a bit, the solution is to install the libmysqlclient-dev package.   $ sudo apt-get install libmysqlclient-dev The… Read more →