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've tried building docker images using both manylinux2010 and manylinux1, and with each image I encountered
libcrypto.so.2 No such file or directory
I can see the shared library under /usr/local/lib/. I've also updated the LD_LIBRARY_PATH to include /usr/local/lib/ but to no avail.
I've followed the discussion here #305 but in this case it looks like its looking for the right shared lib and isn't finding one.
Complete error message /opt/_internal/cpython-3.7.4/bin/python: error while loading shared libraries: libcrypt.so.2: cannot open shared object file: No such file or directory
The text was updated successfully, but these errors were encountered:
Updating LD_LIBRARY_PATH at runtime to include /usr/local/lib resolved this. The issue was that, earlier, LD_LIBRARY_PATH was reset at runtime, and therefore it couldn't find the shared lib.
I've tried building docker images using both manylinux2010 and manylinux1, and with each image I encountered
libcrypto.so.2 No such file or directory
I can see the shared library under /usr/local/lib/. I've also updated the LD_LIBRARY_PATH to include /usr/local/lib/ but to no avail.
I've followed the discussion here #305 but in this case it looks like its looking for the right shared lib and isn't finding one.
Complete error message
/opt/_internal/cpython-3.7.4/bin/python: error while loading shared libraries: libcrypt.so.2: cannot open shared object file: No such file or directory
The text was updated successfully, but these errors were encountered: