Results 129 comments of Stefan Marsiske

i think it would be worthwhile to find out why this dll is not found on your system, even as you say you put it into various places. as far...

i'm not sure sys.path is the right path to check, sys.path is for python modules, libsodium is not a python module. is it possible that it would be enough to...

If windows does have something similar to $LD_LIBRARY_PATH it might make sense to set that instead correctly.

sorry i have no access to windows hosts.

it's kinda organic, if people miss a function they most of the time add it themselves and i just merge it in. it's pretty easy, checkout this https://github.com/stef/pysodium/blob/master/pysodium/__init__.py - and...

if you agree i'll close this issue next time i come across it.

howdy, i just released a new version of pysodium, that moved away from cffi to ctypes, so this issue should never come up again. could you try with a fresh...

dunno about freebsd, does it need ldconfig?

i was told to try /etc/rc.d/ldconfig start

apparently libs on macosx are called something else from .so: https://stackoverflow.com/questions/11554355/mac-os-x-lion-python-ctype-cdll-error-lib-so-6-image-not-found can you try out to change line 32 in `pysodium/__init__.py` to ``` python sodium = ctypes.cdll.LoadLibrary("libsodium.dylib") ```