Skip to content

Instantly share code, notes, and snippets.

@alphamarket
Created June 23, 2021 13:37
Show Gist options
  • Save alphamarket/f64a0438387f97c522c9863f2a5498dc to your computer and use it in GitHub Desktop.
Save alphamarket/f64a0438387f97c522c9863f2a5498dc to your computer and use it in GitHub Desktop.
Painlessly Install MySQL Connector for C++
apt-get install -y wget && \
wget 'https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-community-client-plugins_8.0.25-1ubuntu20.04_amd64.deb' && \
wget 'https://dev.mysql.com/get/Downloads/Connector-C++/libmysqlcppconn9_8.0.25-1ubuntu20.04_amd64.deb' && \
wget 'https://dev.mysql.com/get/Downloads/Connector-C++/libmysqlcppconn8-2_8.0.25-1ubuntu20.04_amd64.deb' && \
wget 'https://dev.mysql.com/get/Downloads/Connector-C++/libmysqlcppconn-dev_8.0.25-1ubuntu20.04_amd64.deb' && \
dpkg -i mysql-community-client-plugins_8.0.25-1ubuntu20.04_amd64.deb && \
dpkg -i libmysqlcppconn9_8.0.25-1ubuntu20.04_amd64.deb && \
dpkg -i libmysqlcppconn8-2_8.0.25-1ubuntu20.04_amd64.deb && \
dpkg -i libmysqlcppconn-dev_8.0.25-1ubuntu20.04_amd64.deb && \
apt-get install -y libmysqlcppconn-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment