Error installing mysqlclient for python on Ubuntu 18.04

gcc is part of the build-essential package, which you should install before anything else:

sudo apt-get install build-essential

UPDATE: Following @bosnjak’s suggestion, you also might need to install the openssl developer tools:

sudo apt-get install libssl-dev

Leave a Comment