Skip to content

Commit

Permalink
chore: Updated README to include instructions about frozen requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
anirbanbasu committed Sep 10, 2024
1 parent 863c3dd commit 557e636
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ Install and activate a Python virtual environment in the directory where you hav
python -m pip install -U pip
python -m pip install -U -r requirements.txt
```
While calling `pip install` with `-U` on `requirements.txt` will install the latest packages, this may create an environment with unforeseen bugs and incompatibilities. To create a more stable environment, run `pip` on a list of packages that specifies package versions.

```bash
python -m pip install -r requirements-frozen.txt
```

If necessary, you can uninstall everything previously installed by `pip` (in the virtual environment) by running the following.

```bash
Expand Down

0 comments on commit 557e636

Please sign in to comment.