MacOS High Sierra - Error Updating bench 2017 09 28

OK. Just for close this thread … I solved this issue.

Following another thread I did the commands :

brew unlink mariadb

brew install mariadb-connector-c
ln -s /usr/local/opt/mariadb-connector-c/bin/mariadb_config /usr/local/bin/mysql_config

pip2 uninstall mysqlclient
pip2 install mysqlclient

rm /usr/local/bin/mysql_config
brew unlink mariadb-connector-c
brew link mariadb

But, later I saw that the errors showed in screen are with another path of pip:

./env/bin/pip

So, I did the same commands but pointing to this enviroment …

brew unlink mariadb

brew install mariadb-connector-c
ln -s /usr/local/opt/mariadb-connector-c/bin/mariadb_config /usr/local/bin/mysql_config

./env/bin/pip uninstall mysqlclient
./env/bin/pip install mysqlclient

rm /usr/local/bin/mysql_config
brew unlink mariadb-connector-c
brew link mariadb

After that I can run almost ok a “bench update” command …

I have another issue , but first at all I’m going to search about that :wink:

Thread Closed I think.