How can I install GRPCIO on an Apple M1 Silicon laptop?

This seems to work well, do the following in the terminal export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 export GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 And then install whatever package that you wanted to install, in my case I was trying to install firebase admin and I had to run the following pip install firebase-admin Or just run the below command if you just want … Read more

How to install NodeJS natively on Apple Silicon M1?

The primary Node.JS repository has Issue #2747, which was updated yesterday with a note that current versions of Node compile just fine with no modifications required via Rosetta 2. The same post indicated that there was still in-flight “work to be done” to compile Node to an M1-native binary to unlock additional performance benefits. Additional … Read more

Unknown host CPU architecture: arm64 , Android NDK SiliconM1 Apple MacBook Pro

solved this issue. Finder -> Go To Folder(/Users/mac/Library/Android/sdk/ndk/21.4.7075529) -> now edit ndk-build open it in text editor and paste below code script and re-run your project. from #!/bin/sh DIR=”$(cd “$(dirname “$0″)” && pwd)” $DIR/build/ndk-build “$@” to #!/bin/sh DIR=”$(cd “$(dirname “$0″)” && pwd)” arch -x86_64 /bin/bash $DIR/build/ndk-build “$@” Reference Link

Error about Android Studio on Macbook M1: An error occurred while trying to compute required packages

This is what solved it for me on my M1. Go to Android Studio Preview and download the latest Canary build for Apple chip (Chipmunk). Don’t worry this is just to get through the initial setup. Unpack it, run it, let it install all the SDK components, accept licenses, etc as usual. Once it’s done, … Read more

Emulator appearing offline on M1 Mac after the last update of arm64-v8a

Replace the avd system images you have downloaded with the r02 images. r03 is broken for me but reverting to r02 saved the day! Update: It appears r03, r04, and r05 all don’t work on m1 Google Play ARM 64 v8a System Image (revision: 2) Google APIs ARM 64 v8a System Image (revision: 2) With … Read more

Trouble installing Pandas on new MacBook Air M1

Maybe it is too late. But the only solution worked for me is installing from source if you do not want to use rosetta2 or moniconda python3 -m pip install virtualenv virtualenv -p python3.8 venv source venv/bin/activate pip install –upgrade pip pip install numpy cython git clone –depth 1 https://github.com/pandas-dev/pandas.git cd pandas python3 setup.py install