Skip to content

Setup Guide

Install the tools needed to upload and use kurikintons firmware.


Prerequisites

  • Git - Clone the repository
  • Python 3.11+ - Run build automation
  • uv - Fast Python package installer
  • Task - Modern task runner (automates build commands)

Install Tools

brew install git
brew install python@3.11
brew install uv
brew install go-task
sudo apt update
sudo apt install git
sudo apt install python3-pip python3-venv pipx
pipx ensurepath
pipx install uv
pipx install go-task-bin
winget install Git.Git
winget install Python.Python.3.11
winget install astral-sh.uv
winget install go-task.go-task

Verify

git --version
python3 --version
uv --version
task --version

Next Steps