Skip to main content

Installation

Set up your development environment and run your first tinychat example.
1

Clone the repository

Clone the tinychat repository from GitHub.
git clone https://github.com/DanteNoguez/tinychat.git
cd tinychat
2

Create a virtual environment

Create and activate a Python virtual environment for your project.
python -m venv .venv
source .venv/bin/activate
3

Install dependencies

Install tinychat and its dependencies using uv.
uv install
Verify installation by checking the installed packages with uv pip list.
4

Run your first example

Run the ping pong example to see tinychat in action.
make run
You should see message exchanges demonstrating basic processor communication.