-
Observed behaviourI’m unable to install Fontbakery This seems to be because I can install lxml When I try to install the latest fontbakery (or the latest lxml), it winds up with the following error:
Full error message (Click to expand)
Resources and exact process needed to replicateI assume this issue is due to something about my computer, but I’m not sure what that might be. I am installing in a venv, running Python.
I’m on macOS Monterey, 12.5. What else might I try to debug this issue? Thanks for any leads! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I ran into a similar This Stack Overflow answer points out that you can set a flag to specify your computer's architecture. And this answer shows how you can determine that. So, for me, I ran
And it installs successfully! My current guess at the cause is that m1/m2 macs have a different architecture, and Python modules are starting to be written with this assumption? I don't understand the intel/m1 difference well enough to know if my guess is correct, though. |
Beta Was this translation helpful? Give feedback.
I ran into a similar
architecture not supported
error in another library, and searched for a solution again.This Stack Overflow answer points out that you can set a flag to specify your computer's architecture. And this answer shows how you can determine that.
So, for me, I ran
uname -a
, and saw in the response includedx86_64
at the end. So, I fed this into a flag, like so:And it installs successfully!
My current guess at the cause is that m1/m2 macs have a different architecture, and Python modules are starting to be written with this assumption? I don't understand the intel/m1 difference well enough to know if my guess is correct, …