We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
while installing in clean build and when it is checking for glibc version, i get the
/libx32/libc.so.6: cannot execute binary file: Exec format error glibc version is expr: missing operand Try 'expr --help' for more information.
error is here
LIBC_LIB="$(PATH=/usr/sbin:$PATH ldconfig -p | grep -P "libc.so.6" | head -n 1)" LIBC_INFO=$(echo ${LIBC_LIB} | awk '{print $NF}') LIBC_VER=$(echo $(${LIBC_INFO} | awk 'NR==1 {print $NF}') | grep -oP '\d+\.\d+') echo "glibc version is $LIBC_VER"
changing it to the following works
LIBC_VER=$(ldd --version | awk '/ldd/{print $NF}') echo "glibc version is $LIBC_VER"
should not display the error
Google Chrome
sysinfo-2024-02-15-13-06.json
./webui.sh: line 245: /libx32/libc.so.6: cannot execute binary file: Exec format error glibc version is expr: missing operand Try 'expr --help' for more information. Check TCMalloc: libtcmalloc_minimal.so.4 (standard_in) 1: syntax error ./webui.sh: line 261: [: -eq: unary operator expected libtcmalloc_minimal.so.4 is linked with libc.so,execute LD_PRELOAD=/lib/x86_64-linux-gnu/libtcmalloc_minimal.so.4
### Additional information _No response_
The text was updated successfully, but these errors were encountered:
Issue should be reported and resolved upstream. Looks to have been caused by the code as part of AUTOMATIC1111/stable-diffusion-webui#14883.
Sorry, something went wrong.
Sorry, I've fixed this now, please wait for the merge --> AUTOMATIC1111/stable-diffusion-webui#14910
Upstream has been merged with this repo now, so this should be fixed, closing. Feel free to re-open if it still occurs.
No branches or pull requests
Checklist
What happened?
while installing in clean build and when it is checking for glibc version, i get the
error is here
changing it to the following works
Steps to reproduce the problem
What should have happened?
should not display the error
What browsers do you use to access the UI ?
Google Chrome
Sysinfo
sysinfo-2024-02-15-13-06.json
Console logs
The text was updated successfully, but these errors were encountered: