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
(p) nmac,ttys017,/tmp/wo,505$python
Python 3.7.5 (default, Oct 18 2019, 23:59:39)
[Clang 7.0.2 (clang-700.1.81)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import aionotify
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/private/tmp/wo/p/lib/python3.7/site-packages/aionotify/__init__.py", line 5, in <module>
from .base import Watcher
File "/private/tmp/wo/p/lib/python3.7/site-packages/aionotify/base.py", line 15, in <module>
_libc = ctypes.cdll.LoadLibrary('libc.so.6')
File "/opt/local/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/__init__.py", line 442, in LoadLibrary
return self._dlltype(name)
File "/opt/local/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/__init__.py", line 364, in __init__
self._handle = _dlopen(self._name, mode)
OSError: dlopen(libc.so.6, 6): image not found
The text was updated successfully, but these errors were encountered:
You can't restrict platform in setup keywords, but you can generate platform-specific wheels via e.g. python setup.py bdist_wheel --plat-name=manylinux1_x86_64 and exit early in the setup script if sys.platform doesn't match (when installing from source dists).
The text was updated successfully, but these errors were encountered: