From 2601f6fc7813a3ddd66d5d7351e08727de7d5012 Mon Sep 17 00:00:00 2001 From: mddicicco <53273624+mddicicco@users.noreply.github.com> Date: Wed, 14 Oct 2020 09:55:40 -0500 Subject: [PATCH 1/2] Update site.cfg change connector path to support amd64 installation of mysql connector c --- site.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site.cfg b/site.cfg index 6b4596a4..f964c4c2 100644 --- a/site.cfg +++ b/site.cfg @@ -9,4 +9,4 @@ static = False # http://stackoverflow.com/questions/1972259/mysql-python-install-problem-using-virtualenv-windows-pip # Windows connector libs for MySQL. You need a 32-bit connector for your 32-bit Python build. -connector = C:\Program Files (x86)\MySQL\MySQL Connector C 6.1 +connector = C:\Program Files\MySQL\MySQL Connector C 6.1 From 796d0dca23cffecf14738e95f755b95a09b822ac Mon Sep 17 00:00:00 2001 From: mddicicco <53273624+mddicicco@users.noreply.github.com> Date: Wed, 14 Oct 2020 09:57:21 -0500 Subject: [PATCH 2/2] Update setup_windows.py swap client to mysql instead of mariadb --- setup_windows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup_windows.py b/setup_windows.py index c374ad60..9a67a965 100644 --- a/setup_windows.py +++ b/setup_windows.py @@ -12,8 +12,8 @@ def get_config(): extra_objects = [] - # client = "mysqlclient" - client = "mariadbclient" + client = "mysqlclient" + # client = "mariadbclient" vcversion = int(get_build_version()) if client == "mariadbclient":