Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@ git clone https://github.com/precice/fmi-runner.git
cd fmi-runner
```

To use `pip` for the installation, run the command:
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:

```bash
pip install --user -e .
python -m venv .venv && . .venv/bin/activate
pip install -e .
```

The editable flag `-e` allows you to update the FMI runner by pulling the repository.
Expand Down