I tried to install lightgbm with gpu in anaconda. I used pip in anaconda directly with --install-option='--gpu'. it's built successfully and lib_lightgbm.so links to libstdc++.so under /lib64.
as anaconda has it's own libstdc++.so under anaconda3/lib and it's different from the one under /lib64, when I try to import lightgbm, I got the error saying
anaconda3/lib/libstdc++.so.6: version GLIBCXX_3.4.29 not found (required by lib_lightgbm.so)
what's the recommend way to keep libstdc++.so in anaconda consistent with lightgbm (or any other libraries) built outside anaconda?
do I need to find the cpp compiler information used by anaconda? where can I find such information?