Skip to content

Instantly share code, notes, and snippets.

@mancap314
Created December 14, 2023 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mancap314/f8a4455b3efce1d674bb617fbbfcdde7 to your computer and use it in GitHub Desktop.
Save mancap314/f8a4455b3efce1d674bb617fbbfcdde7 to your computer and use it in GitHub Desktop.
Install Hummingbot on Linux - g1-small instance
#!/bin/bash
sudo apt -y install git python3-pip
echo "alias python=python3" >> ~/.bashrc
source ~/.bashrc
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b
rm Miniconda3-latest-Linux-x86_64.sh
miniconda3/bin/conda init bash
source miniconda3/etc/profile.d/conda.sh
conda create --name hummingbot --yes
conda activate hummingbot
conda install --yes conda-build pre-commit numpy pandas pydantic tabulate cachetools aiohttp ujson Cython
git clone https://github.com/hummingbot/hummingbot.git
cd hummingbot
./install
./compile
./clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment