[Fixed]-Python Django error : version GLIBC_PRIVATE not defined

13👍

Finally, I could find the solution. I was using an old version of

psycopg2

. So, I removed previously installed version with pip uninstall psycopg2 and reinstalled it as pip install psycopg2

12👍

Was facing the same Issue worked after Installing:

pip install psycopg2-binary 
👤Snivio

Leave a comment