for anyone installing meltano on a fresh M1 i figu...
# troubleshooting
p
for anyone installing meltano on a fresh M1 i figured i'd post what worked for me just now since this keeps changing. the reason a
pip install
doesn't just work is because a wheel isn't yet available for
psycopg2_binary
on M1 and the install throws a
ResolutionImpossible
error. all i had to do (python 3.8.12) was:
Copy code
brew install postgresql
pip install psycopg2_binary
pip install meltano
t
Would you be willing to document this in https://gitlab.com/meltano/meltano/-/issues/2675 ? 😄
p
done!