Skip to content

Commit daf0abe

Browse files
committed
Explicitly mention installation of Jinja
1 parent 71fd3c7 commit daf0abe

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

primer-on-jinja-templating-update/README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,19 @@ $ python -m venv venv
1111
$ source venv/bin/activate
1212
```
1313

14-
You can then install `flask` with `pip`:
14+
You can then install Jinja and Flask with `pip`:
1515

1616
```console
17-
(venv) $ python -m pip install flask
17+
(venv) $ python -m pip install Jinja2 flask
1818
```
1919

20-
When you install Flask you'll install Jinja2 as a dependency.
20+
Alternatively, you can install the pinned dependencies from `requirements.txt`:
21+
22+
```console
23+
(venv) $ python -m pip install -r requirements.txt
24+
```
25+
26+
This command will install the versions used in the tutorial of Jinja, Flask, and their dependencies.
2127

2228
## Run the Web App
2329

0 commit comments

Comments
 (0)