Created
December 14, 2023 11:06
-
-
Save mancap314/f8a4455b3efce1d674bb617fbbfcdde7 to your computer and use it in GitHub Desktop.
Install Hummingbot on Linux - g1-small instance
This file contains 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
#!/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