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
but it fails immediately while being imported with
ImportError: dlopen(/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/_pacparser.cpython-312-darwin.so, 0x0002): tried: '/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/_pacparser.cpython-312-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e' or 'arm64'))
because maybe it shouldn't be .so but .dylib on mac?
full output for python 3.12:
> python3
Python 3.12.4 (main, Jun 6 2024, 18:26:44) [Clang 15.0.0 (clang-1500.3.9.4)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pacparser
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/__init__.py", line 31, in <module>
from pacparser import _pacparser
ImportError: dlopen(/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/_pacparser.cpython-312-darwin.so, 0x0002): tried: '/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/_pacparser.cpython-312-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e' or 'arm64')), '/System/Volumes/Preboot/Cryptexes/OS/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/_pacparser.cpython-312-darwin.so' (no such file), '/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/_pacparser.cpython-312-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e' or 'arm64'))
full output for python 3.11:
> python3
Python 3.11.9 (main, Apr 2 2024, 08:25:04) [Clang 15.0.0 (clang-1500.3.9.4)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pacparser
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/wrp/projects/manugarg--pacparser_git/py311venv/lib/python3.11/site-packages/pacparser/__init__.py", line 31, in <module>
from pacparser import _pacparser
ImportError: dlopen(/Users/wrp/projects/manugarg--pacparser_git/py311venv/lib/python3.11/site-packages/pacparser/_pacparser.cpython-311-darwin.so, 0x0002): tried: '/Users/wrp/projects/manugarg--pacparser_git/py311venv/lib/python3.11/site-packages/pacparser/_pacparser.cpython-311-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e' or 'arm64')), '/System/Volumes/Preboot/Cryptexes/OS/Users/wrp/projects/manugarg--pacparser_git/py311venv/lib/python3.11/site-packages/pacparser/_pacparser.cpython-311-darwin.so' (no such file), '/Users/wrp/projects/manugarg--pacparser_git/py311venv/lib/python3.11/site-packages/pacparser/_pacparser.cpython-311-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e' or 'arm64'))
please kindly help. thank you.
The text was updated successfully, but these errors were encountered:
i've installed the latest pacparser:
but it fails immediately while being imported with
ImportError: dlopen(/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/_pacparser.cpython-312-darwin.so, 0x0002): tried: '/Users/wrp/py3envs/pacparser-test/lib/python3.12/site-packages/pacparser/_pacparser.cpython-312-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e' or 'arm64'))
because maybe it shouldn't be .so but .dylib on mac?
full output for python 3.12:
full output for python 3.11:
please kindly help. thank you.
The text was updated successfully, but these errors were encountered: