Da Confluent-Kafka
das native Librdkafka
verwendet, ist die Installation etwas umständlich.
Machen wir uns eine Notiz:
Legen Sie zuerst die erforderlichen Pakete ein:
apt-get install python-pip
apt-get install python2.7-dev
apt-get install software-properties-common
Fügen Sie als Nächstes das Repository von ** Confluent ** hinzu:
wget -qO - http://packages.confluent.io/deb/3.0/archive.key | sudo apt-key add -
add-apt-repository "deb [arch=amd64] http://packages.confluent.io/deb/3.0 stable main"
Zum Schluss installieren Sie librdkafka
und Confluent-Kafka
:
apt-get update
apt-get install librdkafka-dev
pip install confluent-kafka
das ist alles.
Recommended Posts