Installer OctoBot avec Python index package (pip)
Après l'installation, OctoBot démarre en node mode et ouvre son interface node. Depuis celle-ci, vous pouvez :
- Lancer des automatisations configurées et suivies depuis la nouvelle interface OctoBot ou l'application mobile (recommandé pour la plupart des utilisateurs).
- Lancer des OctoBots manuels avec leur propre interface, une configuration plus avancée et le moteur de backtesting (pour les utilisateurs experts).
Consultez le guide de démarrage pour les étapes complètes.
La traduction française de cette page est en cours.
Prérequis
- Python 3.10 (download)
- Add python to your PATH (tutorial windows)
Installation
In a command line (with python in your PATH) type the following command:
python3.10 -m pip install OctoBotYou can change python3.10 to the name of the python binary you added to your PATH (for example on linux you may use python3 or even python if the python —version commands outputs a python 3.10 version)
Utilisation
OctoBotMise à jour
Exécuter la commande suivante va mettre à jour votre OctoBot Python en utilisant la dernière version et installer les dépendances associées.
python3.10 -m pip install -U OctoBotLe prochain redémarrage mettra automatiquement à jour les tentacles de votre OctoBot.
Lancer plusieurs OctoBots
To run a second OctoBot on the same computer :
-
Create a new directory and enter it
-
Start OctoBot and stop it after 1-2min to let it create default files
-
Open user/config.json file
-
Change web config lines
FROM
"web": { "auto-open-in-web-browser": true }TO
"web": { "auto-open-in-web-browser": true, "port": 8000 }In this example, the second OctoBot’s web interface is accessible at http://127.0.0.1:8000.
Any port can be used except those already used by another OctoBot or any software on your system.
-
Start the new OctoBot