You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I experienced an issue during Django startup regarding the conflict between psycopg2=2.7.1 (on develop branch) and its dependency glibc 2.26. Need an update of psycopg2 to a version higher than 2.7.3.2.
Or better, use this in requirements.txt (also recommended for other packages):
Building on Ubuntu 18.04, Python 2.7, my error messages were:
RuntimeError: populate() isn't reentrant when ./manage.py shell
ImportError('/usr/local/lib/python2.7/site-packages/psycopg2/.libs/libresolv-2-c4c53def.5.so: symbol __res_maybe_init version GLIBC_PRIVATE not defined in file libc.so.6 with link time reference',) when looking into it with pdb.
The text was updated successfully, but these errors were encountered:
I experienced an issue during Django startup regarding the conflict between psycopg2=2.7.1 (on develop branch) and its dependency glibc 2.26. Need an update of psycopg2 to a version higher than 2.7.3.2.
Or better, use this in requirements.txt (also recommended for other packages):
Refs: psycopg/psycopg2-wheels#2
Building on Ubuntu 18.04, Python 2.7, my error messages were:
RuntimeError: populate() isn't reentrant
when./manage.py shell
ImportError('/usr/local/lib/python2.7/site-packages/psycopg2/.libs/libresolv-2-c4c53def.5.so: symbol __res_maybe_init version GLIBC_PRIVATE not defined in file libc.so.6 with link time reference',)
when looking into it with pdb.The text was updated successfully, but these errors were encountered: