Skip to content

Instantly share code, notes, and snippets.

@TanjinAlam
Last active June 21, 2022 08:02
Show Gist options
  • Save TanjinAlam/604029408dfcacecd5bcac4753e0bc5e to your computer and use it in GitHub Desktop.
Save TanjinAlam/604029408dfcacecd5bcac4753e0bc5e to your computer and use it in GitHub Desktop.
hummingbot setup bash script
# 1) Update Ubuntu's database of software
sudo apt-get update
# 2) Install tmux
sudo apt-get install -y tmux
# 3) Install Docker
sudo apt install -y docker.io
# 4) Start and Automate Docker
sudo systemctl start docker && sudo systemctl enable docker
# 5) Change permissions for docker (optional)
# Allow docker commands without requiring sudo prefix
sudo usermod -a -G docker $USER
# 6) Run installation
wget https://raw.githubusercontent.com/hummingbot/hummingbot/master/installation/docker-commands/create.sh
wget https://raw.githubusercontent.com/hummingbot/hummingbot/master/installation/docker-commands/start.sh
wget https://raw.githubusercontent.com/hummingbot/hummingbot/master/installation/docker-commands/update.sh
# 6) Enable script permissions
chmod a+x *.sh
# 8) Close terminal window
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment