We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71fd3c7 commit daf0abeCopy full SHA for daf0abe
primer-on-jinja-templating-update/README.md
@@ -11,13 +11,19 @@ $ python -m venv venv
11
$ source venv/bin/activate
12
```
13
14
-You can then install `flask` with `pip`:
+You can then install Jinja and Flask with `pip`:
15
16
```console
17
-(venv) $ python -m pip install flask
+(venv) $ python -m pip install Jinja2 flask
18
19
20
-When you install Flask you'll install Jinja2 as a dependency.
+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.
27
28
## Run the Web App
29
0 commit comments