Welcome to the Burn Byte documentation! If you have questions about anything related to Burn Byte, you're always welcome to ask our community on GitHub Discussions.
Python 3.7 or later
MacOS, Windows (including WSL), and Linux are supported
If you using the best S.O..., sorry, unix S.O, you just need run this command in your terminal to install all dependencies and files
Mac OS and Linux(support for most distros):
1# simple install2sudo bash -c "$(curl -fsSL burn-installation.tk)"3# dev install4sudo bash -c "$(curl -fsSL burn-installation.tk)" --dev
In Linux:
1sudo apt-get -y install python32sudo apt-get -y install python3-pip3sudo apt-get -y install git
In Mac Os:
1# install the homebrew(https://brew.sh/)2/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"3brew install python34brew install git
In Windows:
Download Python 3.8 from here
Launch installer, click add python to PATH
Methods
Go to releases and download the most recent version
Unzip the files
Enter the directory where you unzip the files and run this command:
1pip3 install -r requirements.txt2# or to windows3pip install -r requirements.txt
Use git clone
this mode:
1git clone https://github.com/R3tr074/Burn-Byte
Enter in the directory and execute this command:
1pip3 install -r requirements.txt2# or to windows3pip install -r requirements.txt
Now, if you want run burn byte in a isolate ambient, or just not want install all dependencies in your PC, you can run he in a Docker container, practical and simple
Use git clone
to clone burn byte repo:
1git clone https://github.com/R3tr074/Burn-Byte
Enter in the directory and watch the docker magic happen:
1# maybe you need a super user privilege to run it2docker build -t burn-byte .3docker run -it burn-byte
1python3 burn.py --help