Snelstartgids
De ByNinja Trading Bot werkt het beste op Ubuntu. Als u Windows gebruikt, raden we ten zeerste aan om Windows Subsystem for Linux (WSL) te installeren voor een naadloze ervaring.
Download Ubuntu (WSL) uit de Microsoft Store1. Installeer Git
Open uw Ubuntu-terminal en installeer Git. Dit is vereist om de broncode van de bot te downloaden.
Code
sudo apt update && sudo apt install git -y2. Kloon de Repository
Download de handelsbot-repository naar uw lokale machine met behulp van Git.
Code
git clone https://github.com/byninja-trading/byninja-trading-bot3. Ga naar de Directory
Ga naar de zojuist gedownloade repository-map.
Code
cd byninja-trading-bot4. Omgevingssetup
Voer het setup-script uit dat automatisch afhankelijkheden bijwerkt, de Python virtuele omgeving installeert, pip bijwerkt en alle vereiste Python-pakketten installeert (zoals python-binance, pandas, etc.).
Code
chmod +x setup.sh && ./setup.sh