diff --git a/README.md b/README.md index 2c015091a0905a84ad00c50dd9c811d41552e7d3..9e85549c187f6fed9fcefce84274a50605d87ef9 100644 --- a/README.md +++ b/README.md @@ -171,3 +171,14 @@ $ flask run **Solution2(Preferred):** Add `SQLALCHEMY_TRACK_MODIFICATIONS` in `config.py` ecb8e6209073941c6ba554b812496020b1c59982 + +5. Error for installing mysqlclient and mysql + + **Solution** + Add these commands within the enviorment + ```shell + $ env LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip install mysqlclient + $ env LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip install mysql + ``` + +