Getting Started
This guide will walk you through setting up a local development environment for bice.
Prerequisites
Python 3.11 or higher: The project targets modern Python versions.
Git: For version control.
Installation
Clone the repository:
git clone https://github.com/simon123h/bice cd bice
Set up a virtual environment: It is highly recommended to use a virtual environment to isolate the project’s dependencies.
Linux / macOS:
python3 -m venv venv source venv/bin/activate
Windows:
python -m venv venv .\venv\Scripts\Activate.ps1
Install dependencies: Install the package in “editable” mode along with all development tools:
pip install -e ".[dev]"
Verifying the Setup
To ensure everything is installed correctly, run the following command:
pytest
If all tests pass, you are ready to start developing!