Skip to content

Commit

Permalink
Suggest updating pip before installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ielis committed May 8, 2024
1 parent 44728b7 commit 885c0fb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/developers/developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ python3 -m venv venv
source venv/bin/activate
```

and updating Python's `pip` tool:

```bash
python3 -m pip install --upgrade pip
```

You can then do a local/editable install:


```bash
python3 -m pip install --editable ".[test]"
```

Note this uses `pyproject.toml` to declare dependencies, so you will need pip ≥ 21.3 for this to work.

After installation you should be able to run the test suite:

```bash
Expand Down

0 comments on commit 885c0fb

Please sign in to comment.