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
Error log: ImportError: No module named '_nanomsg_ctypes' UserWarning: Could not load the default wrapper for your platform: cpy, performance may be affected!
I fixed it in nanomsg_wrappers/init.py add 2 lines: import _nanomsg_ctypes import _nanomsg_cpy
The text was updated successfully, but these errors were encountered:
Is this because pyinstaller doesn't know to include the _nanomsg_ctypes package because it thinks its not used. Is there some way to tell pyinstaller to include it anyway?
Error log:
ImportError: No module named '_nanomsg_ctypes'
UserWarning: Could not load the default wrapper for your platform: cpy, performance may be affected!
I fixed it in nanomsg_wrappers/init.py add 2 lines:
import _nanomsg_ctypes import _nanomsg_cpy
The text was updated successfully, but these errors were encountered: