I am trying to get a Python script to run on the linux server I\'m connected to via ssh. The script uses mysqldb. I have all the other components I need, but when I try to i
If you're on macOS and already installed mysql@5.7 via brew install:
brew install mysql-connector-c
brew unlink mysql@5.7
brew link --overwrite --dry-run mysql@5.7
first, to see what symlinks are getting overwrittenbrew link --overwrite --force mysql@5.7
to actually overwrite mysql-related symlinks with mysql@5.7pip install mysqlclient