Skip to content

Instantly share code, notes, and snippets.

@gwbischof
Last active July 2, 2020 18:04
Show Gist options
  • Save gwbischof/86d36b79c5363a8faa459fc7a161d23c to your computer and use it in GitHub Desktop.
Save gwbischof/86d36b79c5363a8faa459fc7a161d23c to your computer and use it in GitHub Desktop.
# I did this setup on nslskafka01, with the user consumer.
# Create a new user
useradd consumer
# Update consumer password to uuid4
passwd consumer
# Install conda.
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
# Create a new conda env called consumers.
conda create -n consumers python=3.8
conda activate consumers
pip install supervisor
pip install bluesky-kafka
or
git clone https://github.com/bluesky/bluesky-kafka.git
pip install -e .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment