update README with LFS dependencies

This commit is contained in:
Luis Aleixo 2021-08-20 17:13:05 +02:00
parent b40170f58d
commit 5c37f20030

View file

@ -87,7 +87,23 @@ This will start a local version of CARA, which can be visited at http://localhos
### Running the COVID calculator app in development mode
Download Git Large File Storage (LFS) - **macOS**:
```
brew install git-LFS
```
Download Git Large File Storage (LFS) - **Linux**:
```
apt-get install git-lfs
```
Install dependencies:
```
git lfs install
git lfs pull # Fetch the data from LFS
pip install -e . # At the root of the repository
python -m cara.apps.calculator
```