nfsi-canada / OBStools

Tools for processing broadband ocean-bottom seismic data
https://nfsi-canada.github.io/OBStools/
MIT License
52 stars 35 forks source link

Error when using query_fdsn_stdb #40

Open LevCarlo opened 1 year ago

LevCarlo commented 1 year ago

Hi, developers, thanks for your excellent work and provding such a powerful tools! Recently I am learning how to request and process obs seismic data using the OBStools, I encountered the same problem in two environments (one is the local server, another is the supercomputer cluster. Both are Linux system) when using query_fdsn_stdb to create the StDb Database. ImportError: /lib64/libstdc++.so.6: version 'CXXABI_1.3.8' not found I solved this problem by adding the following content to the ~/.bashrcfile, which utilizes the libstdc++.so.6 in the conda environment. export LD_PRELOAD=/xxx/software/anaconda3/envs/obseis/lib/libstdc++.so.6 I would like to ask if there is any other solution, especially for non-root users. Hope you can reply.