I am trying to install mysqlclient in my venv as part of my requirements.txt for my project and am running into this error. Running MacOS Ventura 13.4, and version 8.0.33 of mysql. I have tried reinstalling mysqlclient and other dependent libraries with homebrew, like openssl, and also updating xcode command lines tools - but none of these options have worked.
Showing the output below:
pip3 install mysqlclient
Collecting mysqlclient
Using cached mysqlclient-2.1.1.tar.gz (88 kB)
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: mysqlclient
Building wheel for mysqlclient (pyproject.toml) ... error
error: subprocess-exited-with-error
× Building wheel for mysqlclient (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [43 lines of output]
mysql_config --version
['8.0.33']
mysql_config --libs
['-L/usr/local/opt/mysql-client/lib', '-lmysqlclient', '-lzlib', '-lzstd', '-L/usr/local/opt/openssl@1.1/lib', '-lssl', '-lcrypto', '-lresolv']
mysql_config --cflags
['-I/usr/local/opt/mysql-client/include/mysql']
ext_options:
library_dirs: ['/usr/local/opt/mysql-client/lib', '/usr/local/opt/openssl@1.1/lib']
libraries: ['mysqlclient', 'zlib', 'resolv']
extra_compile_args: ['-std=c99']
extra_link_args: []
include_dirs: ['/usr/local/opt/mysql-client/include/mysql']
extra_objects: []
define_macros: [('version_info', "(2,1,1,'final',0)"), ('__version__', '2.1.1')]
running bdist_wheel
running build
running build_py
creating build
creating build/lib.macosx-10.9-x86_64-cpython-37
creating build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb
copying MySQLdb/__init__.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb
copying MySQLdb/_exceptions.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb
copying MySQLdb/connections.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb
copying MySQLdb/converters.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb
copying MySQLdb/cursors.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb
copying MySQLdb/release.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb
copying MySQLdb/times.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb
creating build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb/constants
copying MySQLdb/constants/__init__.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb/constants
copying MySQLdb/constants/CLIENT.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb/constants
copying MySQLdb/constants/CR.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb/constants
copying MySQLdb/constants/ER.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb/constants
copying MySQLdb/constants/FIELD_TYPE.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb/constants
copying MySQLdb/constants/FLAG.py -> build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb/constants
running build_ext
building 'MySQLdb._mysql' extension
creating build/temp.macosx-10.9-x86_64-cpython-37
creating build/temp.macosx-10.9-x86_64-cpython-37/MySQLdb
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -Dversion_info=(2,1,1,'final',0) -D__version__=2.1.1 -I/usr/local/opt/mysql-client/include/mysql -I/Users/ankikhat/Desktop/camdb_updates/venv/include -I/Library/Frameworks/Python.framework/Versions/3.7/include/python3.7m -c MySQLdb/_mysql.c -o build/temp.macosx-10.9-x86_64-cpython-37/MySQLdb/_mysql.o -std=c99
gcc -bundle -undefined dynamic_lookup -arch x86_64 -g build/temp.macosx-10.9-x86_64-cpython-37/MySQLdb/_mysql.o -L/usr/local/opt/mysql-client/lib -L/usr/local/opt/openssl@1.1/lib -lmysqlclient -lzlib -lresolv -o build/lib.macosx-10.9-x86_64-cpython-37/MySQLdb/_mysql.cpython-37m-darwin.so
ld: library not found for -lzlib
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command '/usr/bin/gcc' failed with exit code 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for mysqlclient
Failed to build mysqlclient
ERROR: Could not build wheels for mysqlclient, which is required to install pyproject.toml-based projects