Document Windows-first setup flow

This commit is contained in:
lm 2025-10-17 13:53:28 +02:00
parent a1c105dba1
commit 7ef8ce08d0
1 changed files with 6 additions and 6 deletions

View File

@ -15,16 +15,16 @@ ICRS is a small Tkinter tool for analysing colour ranges in images. You load a p
- [uv](https://github.com/astral-sh/uv) for dependency management - [uv](https://github.com/astral-sh/uv) for dependency management
- Tkinter (install separately on some Linux distros) - Tkinter (install separately on some Linux distros)
## Setup with uv ## Setup with uv (Windows PowerShell)
```bash ```powershell
git clone https://git.lukasmahler.de/lm/ICRS.git git clone https://git.lukasmahler.de/lm/ICRS.git
cd ICRS cd ICRS
uv venv uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate .\.venv\Scripts\Activate
uv pip install . # install ICRS and dependencies uv pip install .
uv run icrs # launches the GUI uv run icrs
``` ```
The launcher copies Tcl/Tk resources into the virtualenv on first run, so no manual environment tweaks are needed. The launcher copies Tcl/Tk resources into the virtualenv on first run, so no manual environment tweaks are needed. On macOS/Linux replace the activate step with `source .venv/bin/activate`.
## Workflow ## Workflow
1. Load an image (`📂`) or a folder (`📁`). 1. Load an image (`📂`) or a folder (`📁`).