Closed antoine-pous closed 7 years ago
The module needs this shared library (libts3client.so) as it's basically a wrapper for the TeamSpeak 3 SDK. You can use ldd to verify this.
ldd /path/to/module/ts3client.node
You can modify the LD_LIBRARY_PATH to make sure your app will find the TeamSpeak ClientLib.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/sdk/
If fact the file node-ts3sdk-client/bin/linux/amd64/libts3client.so
exists into your wrapper, this is why i don't understand the error.
Correct. But depending on the platform you're running on, the OS will search for shared libraries in different locations... As I said, on Linux, the LD_LIBRARY_PATH is what's important.
Were you able to resolve the problem? Can I close this issue?
Sorry, i haven't tested the solution.
I've asked about this error because i want write somes unit tests with mocha and chai for this repository before implementing it into another project :)
Hi !
I'm trying to start the client example to see how all these stuffs work and i've this error.
If you have any idea on how to fix it this issue it's awesome !
Thank you !