Skip to content

Commit fa76a4a

Browse files
committed
Fixes #337: Fix error with django installation in chapter 3.
1 parent b643ec4 commit fa76a4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orchestration/scripts/app.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55

66
# Configure Django on app server.
77
ansible app -b -m yum -a "name=python3-pip state=present"
8-
ansible app -b -m pip -a "name=django<4 state=present"
8+
ansible app -b -m pip -a "executable=pip3 name=django<4 state=present"
99

1010
# Check Django version.
1111
ansible app -a "python3 -m django --version"

0 commit comments

Comments
 (0)