Open
Description
There is an issue with pip installing PyKerberos on MacOS. The ARCH has to be set during the install or it fails. MacOS is no longer just "x86_64" and this is showing up in some libraries as the M1 processor is coming into play. I hacked around it for my installation with the following command after brew installing the base OS libraries.
% ARCHFLAGS="-arch x86_64" pip3 install aws-adfs --user
Just in case someone hits this I figured I throw it out there. It would be nice to have an option to not have krb used on Mac.
If someone has a better solution, please pile on.