I installed julia via the official linux generic binaries. And I managed to call julia from python.
However, because libjulia.so links to its own libstdc++.so.6, if I import other libraries which need system libstdc++.so in python before julia, I would end up with missing symbol when link libjulia.so (Becuase it reuses the system's libstdc++ instead) My system libstdc++.so.6 is version 4.8.4, the error is version `GLIBCXX_3.4.20' not found I tried to upgrade my system libstdc++.so.t to version, 5.3.0, still error: symbol _ZTTNSt7__cxx1118basic_stringstreamIcSt11char_traitsIcESaIcEEE, version GLIBCXX_3.4.21 not defined. I don't like change LD_LIBRARY_PATH to julia's `libstdc++` so that overrides the system's one either. What should I do then?
