HuguesTHOMAS/KPConv-PyTorch

/lib/x86_64-linux-gn/libc.so.6: version `GLIBC_ABI_DT_RELR' not found (required by cpp_wrappers/cpp_subsampling/grid_subsampling.cpython-310-x86_64-linux-gnu.so)

Closed this issue · 1 comments

Hello,

I am trying to run the train_S3DIS.py on a computing serveur, and I have the error
/lib/x86_64-linux-gn/libc.so.6: version `GLIBC_ABI_DT_RELR' not found (required by cpp_wrappers/cpp_subsampling/grid_subsampling.cpython-310-x86_64-linux-gnu.so)
raised when import cpp_wrappers.cpp_subsampling.grid_subsampling as cpp_subsampling is reached (file datasets/common.py, line 35).

I tried on my personnal laptop, I have no error (just the cuda not found, which is normal as I have no nvidia card on this pc).

Anybody know what this error means ?

libc6 is already installed and updated.

the server works under ubuntu 22.04.4 LTS

Found the problem :

sh doesn’t overwrite old files. I don’t know why. So as I modified some python file to make it work with my data, I copied directly the folder from my laptop (under manjaro) on the server (under ubuntu) and the program was looking for a manjaro dependency under ubuntu.

I restarted from the github version and copied only the python files and now it works.

Sorry for the useless ticket, but maybe the answer will be useful for somebody else one day.