Linux install problems - CXXABI_1.3.9 not found

I think you would have to talk to the CentOS distro. My guess by reading this is that node-pty (which is an NPM i.e. JavaScript application) checks for CXXABI_1.3.9 exported in libstdc++.so.6. And for whatever reason CentOS doesn’t compile their libstdc++.so.6 with that…or they just don’t support 1.3.9.

On my linux distro doing:

$ nm -D /lib64/libstdc++.so.6 | grep CXXABI
0000000000000000 A CXXABI_1.3
0000000000000000 A CXXABI_1.3.1
0000000000000000 A CXXABI_1.3.10
0000000000000000 A CXXABI_1.3.11
0000000000000000 A CXXABI_1.3.12
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_1.3.8
0000000000000000 A CXXABI_1.3.9
0000000000000000 A CXXABI_FLOAT128
0000000000000000 A CXXABI_TM_1

Shows that that code is defined.

Or I guess whatever Julia module is bringing in node.pty needs to update the LD_LIBRARY path somehow to try to ensure that the correct libstdc++.so file is loaded.