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 tried modifying delocate_listdeps.main() to add the line
print(os.environ.get('DYLD_LIBRARY_PATH'))
at the very start. This confirms that the environment variable is seen when I run it with python -m, but not when I use the delocate-listdeps command line tool. Something in there is blocking the environment variables.
Platform (please complete the following information):
OS version: macOS 14.4.1
Delocate version: 0.11.0
The text was updated successfully, but these errors were encountered:
Describe the bug
I'm setting
DYLD_LIBRARY_PATH
to tell delocate where to find my libraries, but it still fails to find them:On the other hand, if I invoke it as a python module then it does work:
I tried modifying
delocate_listdeps.main()
to add the lineat the very start. This confirms that the environment variable is seen when I run it with
python -m
, but not when I use thedelocate-listdeps
command line tool. Something in there is blocking the environment variables.Platform (please complete the following information):
The text was updated successfully, but these errors were encountered: