Skip to content

Commit bb4856c

Browse files
authored
Replace suggestion for pip install --user with a venv (#21)
Follow-up of precice/precice.github.io#677 Related to precice/precice.github.io#398
1 parent 6e608c1 commit bb4856c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,11 @@ git clone https://github.com/precice/fmi-runner.git
6565
cd fmi-runner
6666
```
6767

68-
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:
6969

7070
```bash
71-
pip install --user -e .
71+
python -m venv .venv && . .venv/bin/activate
72+
pip install -e .
7273
```
7374

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

0 commit comments

Comments
 (0)