I have a centOS machine that I do not have sudo access.
I needed to use librosa
python package so I have installed Anaconda and installed the package through conda.
However, when I import this package I get ImportError: /lib64/libm.so.6: version 'GLIBC_2.23' not found
.
Therefore, I attempted to resolve this issue by installing different library files including
- https://anaconda.org/conda-forge/openlibm
- https://anaconda.org/asmeurer/glibc
- https://anaconda.org/groakat/libc
Unfortunately, all of these didn't work out. Some even cause every command to segfault.
Does anyone know any other package or tricks I can try?
Thank you