Installation Issues
I can't install Qwak SDK
- Python SDK deployment on M1 - make sure you're not running with rosetta
I'm getting grpc errors (have 'x86_64', need 'arm64')
When using conda
and running on Mac M1 CPU, simply run the following command:
conda install -c conda-forge grpcio
If the issue is
dependency_injector/providers.cpython-39-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64'))
Do the following:
`pip uninstall dependency_injector
`ARCHFLAGS="-arch arm64" pip install dependency_injector --compile --no-cache-dir
Updated 6 months ago