nebulasio / go-nebulas

Official Go implementation of the Nebulas protocol.
https://nebulas.io
GNU Lesser General Public License v3.0
711 stars 203 forks source link

error while loading shared libraries: libc++.so.1: cannot open shared object file: No such file or directory #197

Closed prettyCoders closed 5 years ago

prettyCoders commented 5 years ago

image #

prettyCoders commented 5 years ago

I installed libc++1 and libc++abi1,But now there is a new problem, image

Samuelchen85 commented 5 years ago

The root cause is that your env variable "LD_LIBRARY_PATH" does not include the location of the corresponding libraries.

If you have the libraries generated/installed in "nbre/lib", you can run the script "install-native-libs.sh"(which is in go-nebulas root dir) to configure the LD_LIBRARY_PATH.

prettyCoders commented 5 years ago

image

prettyCoders commented 5 years ago

@Samuelchen85

prettyCoders commented 5 years ago

image

prettyCoders commented 5 years ago

image thanks

Samuelchen85 commented 5 years ago

Awesome!Glad that the problem was solved.