Skip to content

Instantly share code, notes, and snippets.

@denisdemaisbr
Created July 20, 2024 05:40
Show Gist options
  • Save denisdemaisbr/117d7ea0f7d2ad9d667aaa44bfb7dfe8 to your computer and use it in GitHub Desktop.
Save denisdemaisbr/117d7ea0f7d2ad9d667aaa44bfb7dfe8 to your computer and use it in GitHub Desktop.
install freqtrade Ubuntu 22.04.4 LTS
#!/bin/sh
# https://www.freqtrade.io/
# https://github.com/freqtrade/
mkdir -p /opt
cd /opt
git clone --branch=stable --depth=1 https://github.com/freqtrade/freqtrade.git
cd freqtrade
./setup.sh -i
python3 -m venv .venv
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
python3 -m pip install -e .
pip install stockstats
pip install tulipy
pip install finta
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment