79473999

Date: 2025-02-27 21:56:50
Score: 1
Natty:
Report link

The other answers did not work for me. But the following solved the issue.

conda install -c conda-forge libstdcxx-ng --update-deps

Make sure to run the command above in your desired environment.

You can verify that GLIBCXX_3.4.32 is now supported using the following

strings ~/anaconda3/envs/YOUR_ENV/lib/libstdc++.so.6 | grep GLIBCXX_3.4.3

If you see GLIBCXX_3.4.32 listed, your code will work. (My specific case was importing the python library sounddevice.)

Reasons:
  • Blacklisted phrase (1): did not work
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: User15239563