Hi All,
Kindly excuse me if this is not the right place to post this question
I am trying to install juno in atom and I am facing the following error
/lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /home/xxx/.atom/packages/julia-client/node_modules/node-pty-prebuilt-multiarch/build/Release/pty.node)
Could someone suggest how to fix this issue?
EDIT: Following this post Linux install problems - CXXABI_1.3.9 not found - #4 by pixel27
I tried to add
export LD_PRELOAD=/home/xxxx/julia-1.6.1/lib/julia/libstdc++.so.6
(ref: Cannot find module '../build/Debug/pty.node' · Issue #352 · JunoLab/Juno.jl · GitHub)
in Atom> Init Script.
But when I load Atom
/home/xxxx/.atom/init.coffee
fails to load.
Also, nm -D /lib64/libstdc++.so.6 | grep CXXABI
returns
0000000000000000 A CXXABI_1.3
0000000000000000 A CXXABI_1.3.1
0000000000000000 A CXXABI_1.3.2
0000000000000000 A CXXABI_1.3.3
0000000000000000 A CXXABI_1.3.4
0000000000000000 A CXXABI_1.3.5
0000000000000000 A CXXABI_1.3.6
0000000000000000 A CXXABI_1.3.7
0000000000000000 A CXXABI_TM_1
And I am not sure how to install CXXABI_1.3.9
.
Could someone help me with this?