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
Getting the following error trying to import pugixml after a pip install pugixml on macOS 14 ARM:
ImportError: dlopen(venv311/lib/python3.11/site-packages/pugixml/pugi.cpython-311-darwin.so, 0x0002): tried: 'venv311/lib/python3.11/site-packages/pugixml/pugi.cpython-311-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64'))
My guess is that build.yml needs MACOSX_DEPLOYMENT_TARGET set to "11" to properly build the universal dist.
Using "pip install --no-binary=:all: pugixml" resolves the issue locally.
The text was updated successfully, but these errors were encountered:
Getting the following error trying to import pugixml after a
pip install pugixml
on macOS 14 ARM:ImportError: dlopen(venv311/lib/python3.11/site-packages/pugixml/pugi.cpython-311-darwin.so, 0x0002): tried: 'venv311/lib/python3.11/site-packages/pugixml/pugi.cpython-311-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64'))
My guess is that build.yml needs MACOSX_DEPLOYMENT_TARGET set to "11" to properly build the universal dist.
Using "pip install --no-binary=:all: pugixml" resolves the issue locally.
The text was updated successfully, but these errors were encountered: