Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauko Quiroga committed Sep 8, 2021
1 parent 83c3884 commit cb12735
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ cd openfisca-core
python3 -m venv .venv
source .venv/bin/activate
pip install -U pip
pip install --editable .[dev] --use-deprecated=legacy-resolver
pip install --requirement requirements/dev --upgrade
pip install --editable . --upgrade --no-dependencies
```

## Testing
Expand Down Expand Up @@ -124,9 +125,16 @@ The OpenFisca Web API comes with an [optional tracker](https://github.com/openfi
The tracker is not installed by default. To install it, run:

```sh
pip install openfisca_core[tracker] --use-deprecated=legacy-resolver # Or `pip install --editable ".[tracker]"` for an editable installation
pip install openfisca_core[tracker]
```

Or for an editable installation:

```
pip install --requirement requirements/tracker --upgrade
pip install --requirement requirements/dev --upgrade
pip install --editable . --upgrade --no-dependencies
```

#### Tracker configuration

Expand Down

0 comments on commit cb12735

Please sign in to comment.