OctoBot binaries is dedicated to create and upload binaries for Windows, Linux and MacOS for each OctoBot project release.
- Just double-click on OctoBot_windows.exe
- Open a terminal a type the following commands :
$ chmod +x OctoBot_linux
$ ./OctoBot_linux
Replace OctoBot_linux by OctoBot_osx on MacOS
- Clone OctoBot into the octobot folder
- Install OctoBot requirements
python -m pip install -r octobot/requirements.txt - Install pyinstaller >= 4.0 pip install
https://github.com/pyinstaller/pyinstaller/archive/develop.zip - List OctoBot modules files for pyinstaller discovery
python scripts/python_file_lister.py "bin/octobot_packages_files.txt" <octobot repo folder> - Add pyinstaller required imports
python scripts/insert_imports.py octobot/octobot/cli.py - Copy bin folder into the octobot folder
- Go into the octobot folder
- Compile the OctoBot project
python setup.py build_ext --inplace - Call pyinstaller
pyinstaller bin\start.spec - Binary should be available in the dist folder
More information on OctoBot wiki page.