Skip to content

Commit cb12735

Browse files
author
Mauko Quiroga
committed
Update README.md
1 parent 83c3884 commit cb12735

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ cd openfisca-core
3131
python3 -m venv .venv
3232
source .venv/bin/activate
3333
pip install -U pip
34-
pip install --editable .[dev] --use-deprecated=legacy-resolver
34+
pip install --requirement requirements/dev --upgrade
35+
pip install --editable . --upgrade --no-dependencies
3536
```
3637

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

126127
```sh
127-
pip install openfisca_core[tracker] --use-deprecated=legacy-resolver # Or `pip install --editable ".[tracker]"` for an editable installation
128+
pip install openfisca_core[tracker]
128129
```
129130

131+
Or for an editable installation:
132+
133+
```
134+
pip install --requirement requirements/tracker --upgrade
135+
pip install --requirement requirements/dev --upgrade
136+
pip install --editable . --upgrade --no-dependencies
137+
```
130138

131139
#### Tracker configuration
132140

0 commit comments

Comments
 (0)