Freqtrade Install
This revision is from 2024/02/08 15:55. You can Restore it.
1. Clone the source code from github.
- update repository
sudo apt-get update
- install packages
sudo apt install -y python3-pip python3-venv python3-dev python3-pandas git curl
- Download `develop` branch of freqtrade repository
git clone https://github.com/freqtrade/freqtrade.git
- Enter downloaded directory
cd freqtrade
- your choice (1): novice user
git checkout stable
- your choice (2): advanced user
git checkout develop
- Install freqtrade from scratch
./setup.sh -i
Run the bot !
You can now use the bot by executing 'source .venv/bin/activate; freqtrade <subcommand>'.
You can see the list of available bot sub-commands by executing 'source .venv/bin/activate; freqtrade --help'.
You verify that freqtrade is installed successfully by running 'source .venv/bin/activate; freqtrade --version'.
- activate virtual environment
source ./.venv/bin/activate