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
To use `pip` for the installation, run the command:
68
+
To use `pip` for the installation, create a [virtual environment](https://docs.python.org/3/library/venv.html#creating-virtual-environments) and install the package:
69
69
70
70
```bash
71
-
pip install --user -e .
71
+
python -m venv .venv &&. .venv/bin/activate
72
+
pip install -e .
72
73
```
73
74
74
75
The editable flag `-e` allows you to update the FMI runner by pulling the repository.
0 commit comments