Local installation
On Windows, you can just double click the executable.
On Linux, first type
chmod +x OctoBot_linux_x64
and then ./OctoBot_linux_x64
in a terminal open next to your downloaded executable to start OctoBot.- 1.If you don't have Docker, install it on your system. Here is the docker documentation for Ubuntu, Debian et Raspberry pie.
- 2.Download the OctoBot image using the command:
docker pull drakkarsoftware/octobot:stable
- 3.Start your OctoBot using the command:
docker run -itd --name OctoBot -p 80:5001 -v $(pwd)/user:/octobot/user -v $(pwd)/tentacles:/octobot/tentacles -v $(pwd)/logs:/octobot/logs drakkarsoftware/octobot:stable
The management interface of your OctoBot is available on port 5001 of your system. http://localhost:5001/ or http://ip-address:5001/
Deploy your OctoBot from the code in to be able to use a local Python environment, edit or audit the source code.
- 1.
- 2.Clone the OctoBot repository
git clone https://github.com/Drakkar-Software/OctoBot
- 3.Install the Python dependencies
cd OctoBot
python3 -m pip install -Ur requirements.txt
- 4.Start your OctoBot using this command:
python3 start.py
The management interface of your OctoBot is available on port 5001 of your system. http://localhost:5001/ or http://ip-address:5001/
Last modified 3mo ago