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
👌 Update dependencies and fix compatibility newer python versions (#14)
including bumping pyglotaran and pyglotaran-extras to 0.7.4, adding a dev dependency group, and checking in the new uv.lock.
It also refactors the JavaScript form code to reduce duplication, centralize number-list parsing, and make simulation ID generation more robust.
The README now includes clearer uv-based usage instructions for running from GitHub, a local clone, or an existing project.
A small cleanup also removes the ANYWIDGET_HMR note from pyparamgui.__init__.
Copy file name to clipboardExpand all lines: README.md
+33-1Lines changed: 33 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,38 @@
16
16
17
17
A pyglotaran based jupyter notebook widget for teaching parameter estimation examples. It can simulate data, visualize it and create related model.yml, parameters.csv and dataset.nc files. It is supposed to help students learn about the basics of the pyglotaran ecosystem.
18
18
19
+
## Usage
20
+
21
+
### Option 1: Run directly from GitHub with uv
22
+
23
+
Install and run PyParamGUI directly from the repository without cloning:
24
+
25
+
```bash
26
+
uv run --with "pyparamgui @ git+https://github.com/glotaran/pyparamgui" --with jupyter jupyter lab
27
+
```
28
+
29
+
### Option 2: Run from a local clone
30
+
31
+
Clone the repository and run with the local source:
0 commit comments