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 encountered the following problem while conducting HIC data simulation and have been unable to solve it. I would like to ask for your advice. Is it my dependency version that is causing the problem?
Thanks,
Wang
The text was updated successfully, but these errors were encountered:
The error you're encountering indicates a problem during the compilation of a Python package that involves native extensions, requiring the gcc compiler. The specific files mentioned in the error message, /lib64/libpthread.so.0 and /usr/lib64/libpthread_nonshared.a, are part of the POSIX thread (pthread) libraries, which are essential for supporting multi-threading in C and C++ programs. These libraries are required by the gcc compiler to link the threading support into the native extensions being compiled. The absence of these files suggests an issue with the development environment setup on your system, particularly related to the threading libraries and development tools. You may consider install libc6-dev and glibc-devel.
Hi,Ye
Thanks,
Wang
The text was updated successfully, but these errors were encountered: