1

I have installed Anaconda 3 and lots of packages, including xgboost few months ago and it worked well. But now xgboost stopped working: import fails with

OSError: /home/user/anaconda3/lib/python3.5/site-packages/scipy/sparse/../../../../libstdc++.so.6: version `GLIBCXX_3.4.22' not found (required by /home/user/anaconda3/lib/python3.5/site-packages/xgboost/./lib/libxgboost.so)

I do see libstdc++.so.6 in my lib dir. What might have gone wrong?

Pek
  • 166
  • 1
  • 15

1 Answers1

1

I finally solved it. Here's what I did

conda install libgcc

From this issue.

Pek
  • 166
  • 1
  • 15