Last active
July 2, 2020 18:04
-
-
Save gwbischof/86d36b79c5363a8faa459fc7a161d23c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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