Created
June 23, 2021 13:37
-
-
Save alphamarket/f64a0438387f97c522c9863f2a5498dc to your computer and use it in GitHub Desktop.
Painlessly Install MySQL Connector for C++
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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