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
homebrew now installs by default into /opt/homebrew on Apple Silicon machines (like this one, M1 Pro processor). From Homebrew docs:
This required me changing the pgdb script referenced here . Diff of changes:
... after which the polyglot install worked. (I forget what the arch -arm call is for, I found it online somewhere..)
So I think this script just has to be changed to check if the machine uses Apple Intel or Apple Silicon chip, use the current code ( elif sys.platform == 'darwin'...)
for Apple Intel, add a new block for Apple Silicon?
The text was updated successfully, but these errors were encountered:
@michaelhaaf if there is any way we can prioritize this, it's driving me nuts :) I now can't install polyglot on my laptop using (conda), it has to be from source, which leads to other issues.
System Info
:
homebrew now installs by default into
/opt/homebrew
on Apple Silicon machines (like this one, M1 Pro processor). From Homebrew docs:This required me changing the
pgdb
script referenced here . Diff of changes:... after which the polyglot install worked. (I forget what the
arch -arm
call is for, I found it online somewhere..)So I think this script just has to be changed to check if the machine uses Apple Intel or Apple Silicon chip, use the current code ( elif sys.platform == 'darwin'...)
for Apple Intel, add a new block for Apple Silicon?
The text was updated successfully, but these errors were encountered: