Document Windows-first setup flow
This commit is contained in:
parent
a1c105dba1
commit
7ef8ce08d0
12
README.md
12
README.md
|
|
@ -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 (`📁`).
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue