We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d878ff commit 4c16c93Copy full SHA for 4c16c93
openslide/lowlevel.py
@@ -43,7 +43,9 @@
43
except OSError:
44
# MacPorts doesn't add itself to the dyld search path, but
45
# does add itself to the find_library() search path
46
- # (DEFAULT_LIBRARY_FALLBACK in ctypes.macholib.dyld).
+ # (DEFAULT_LIBRARY_FALLBACK in ctypes.macholib.dyld) on
47
+ # Python 2.6 and 2.7. Python 3 users on MacPorts should add
48
+ # the MacPorts lib directory to DYLD_LIBRARY_PATH.
49
import ctypes.util
50
_lib = ctypes.util.find_library('openslide')
51
if _lib is None:
0 commit comments