Skip to content

Commit

Permalink
Update README for requirements installation
Browse files Browse the repository at this point in the history
As development requirements no longer include base requirements,
both need to be specified during installation. Using `--constraints` is
unnecessary; the requirements `.txt` files already account for it.
  • Loading branch information
Martolivna committed Feb 24, 2024
1 parent 23dc13f commit ac47ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This is my educational project within IT KPI Python mentorship program by @webkn

2. Install requirements:
```console
$ pip install -r requirements/base.in -c requirements/base.txt
$ pip install -r requirements/base.txt -r requirements/dev.txt
```


Expand Down

0 comments on commit ac47ca9

Please sign in to comment.