This guide will help you install Biscuit on your system. Biscuit is available for Windows and Linux operating systems. This guide will cover the installation process for both windows and linux. Mac is not supported at the moment but you can try running from the source code.
Python 3.10 or higher is required to run Biscuit. You can download Python from the official website.
If you want access to the latest features and updates, you can install Biscuit from the source code. Make sure you clone the repository to your local machine before proceeding with the installation.
We recommend using Poetry to manage the dependencies for the project. You can install Poetry using the following command:
pip install poetryAfter installing poetry, you can install the dependencies using the following command:
poetry installOnce the dependencies are installed, you can run Biscuit using the following command:
poetry run biscuitIf you don't want to use Poetry, you can install the dependencies using pip. You can install the dependencies using the following command:
pip install tkextrafont scikit-build
pip install -e .Once the dependencies are installed, you can run Biscuit using the following command:
cd src
python -m biscuitOr you can install Biscuit using git and pip:
pip install git+https://github.com/tomlin7/biscuitBiscuit is compiled into standalone executable files using pyinstaller. Following steps reveal the process of building Biscuit from source code.
First, install biscuit using the instructions provided above. Then, run the windows.spec or linux.spec file with pyinstaller:
poetry run pyinstaller scripts/windows.spec
if you've installed Biscuit using pip:
pyinstaller scripts/windows.spec
This will generate a standalone executable file in dist/.