-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libstdc++.so.6: version `GLIBCXX_3.4.26' not found #469
Comments
You can also use But I don't think this is fixable in PyPlot — by the time PyPlot is loaded, Julia has already loaded its C++ library. So we have to wait for JuliaLang/julia#34276 to be fixed. |
This worked perfect for me using Manjaro unstable servers and julia-bin from arch. THX 💯 |
I have the same problem and I also created a symlink to libstdc++.so.6 like described above to fix it. However, that is not a long-term solution!
|
On my system the library is now: so I create these links in
The problem should be definitely solved in julia-1.9: |
Recently, using PyPlot resulted in the following error:
My system: Manjaro Linux
Julia version: both 1.3.1 and 1.4.0
It turns out to be the same error described here on discourse and temporarily solved in the same way. libstdc++ coming with Julia is outdated compared to the system one.
A workaround is to copy (or link) the system libstdc++.so.6 to the Julia folder:
cp /usr/lib/x86_64-linux-gnu/libstdc++.so.6 $JULIA_HOME/lib/julia/
The text was updated successfully, but these errors were encountered: