You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to load a dll /path/to/library.dll, but I'm working directory /some/other/path. This is okay, unless library.dll requires /path/to/dependency.dll, in which case it doesn't load at all.
export PATH="$PATH:/path/to" before running this script also results in an OSError.
The solution I found only partially works. Ideally, I don't want to have to change the working directory (those DLL's won't be able to load files as expected, I think?). Also, it doesn't work if I want to load DLL's from multiple paths.
The text was updated successfully, but these errors were encountered:
I want to load a dll
/path/to/library.dll
, but I'm working directory/some/other/path
. This is okay, unlesslibrary.dll
requires/path/to/dependency.dll
, in which case it doesn't load at all.This works:
However, this does not work (!):
-- It results in an an
OSError
. As do the following:export PATH="$PATH:/path/to"
before running this script also results in anOSError
.The solution I found only partially works. Ideally, I don't want to have to change the working directory (those DLL's won't be able to load files as expected, I think?). Also, it doesn't work if I want to load DLL's from multiple paths.
The text was updated successfully, but these errors were encountered: