You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,16 @@ Development bootstrap:
21
21
./install.sh --dev
22
22
```
23
23
24
+
Reusing an existing local install:
25
+
26
+
```bash
27
+
./install.sh
28
+
./install.sh --dev
29
+
./install.sh --reinstall
30
+
```
31
+
32
+
`install.sh` now reuses the existing `.venv` and skips `pip install -e` when `pyproject.toml` and the selected install profile are unchanged. This matches pip's editable-install behavior: reinstall is mainly needed when project metadata changes.
33
+
24
34
The installer also publishes launchers into `~/.local/bin` by default:
25
35
26
36
```bash
@@ -41,9 +51,12 @@ Standalone uninstall:
41
51
42
52
```bash
43
53
./uninstall.sh
54
+
./uninstall.sh --purge-venv
44
55
./uninstall.sh --purge-config --purge-state
45
56
```
46
57
58
+
`./uninstall.sh` now removes launchers, completion, and managed shell wiring by default, but preserves `.venv` for faster reinstall. Use `--purge-venv` if you want a full local removal.
0 commit comments