library · inferred from evidence
confluent-kafka
A Python library for Apache Kafka integration that can be installed via pip.
- Fix confluent-kafka build error: librdkafka/rdkafka.h file not found
My `pip install confluent-kafka` died compiling because the C headers for librdkafka were missing. Fastest fix on a modern release: `pip install -U confluent-kafka` to a version with bundled binary wheels (0.11.4+), which never compiles any
- Fix confluent-kafka install failures on Apple M1
Installing confluent-kafka on my M1 failed no matter what flags I passed. The thread workaround (brew install librdkafka, export C_INCLUDE_PATH and LIBRARY_PATH) got the source build working, but the real fix came when the maintainers shipp