Install Confluent-Kafka on Apple's M1 kl7sn 2023-04-18 12345git clone https://github.com/confluentinc/librdkafka.gitcd librdkafka./configure --install-depsmakesudo make install if you get error like this: 1cmp: TAGS: No such file or directory you can try this: 12345brew install openssl zstd pkg-configexport PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@3/lib/pkgconfig"export LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib"brew install ctagsexport PATH="/opt/homebrew/opt/openssl@3/bin:$PATH" after that, you can try again: 1go run -tags dynamic main.go if you get error like this: 12345Package libcrypto was not found in the pkg-config search path.Perhaps you should add the directory containing `libcrypto.pc'to the PKG_CONFIG_PATH environment variablePackage 'libcrypto', required by 'rdkafka', not foundpkg-config: exit status 1 you can try this: 1export PKG_CONFIG_PATH=/opt/homebrew/opt/openssl/lib/pkgconfig