Hello everyone I tried the pulumi for the first ti...
# python
i
Hello everyone I tried the pulumi for the first time and had issue with pip3 - grpcio installation dependencies on mac M1 I solved it with
CFLAGS="-I /opt/homebrew/opt/openssl/include" LDFLAGS="-L /opt/homebrew/opt/openssl/lib" GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 pip install -r requirements.txt
👍 1