diff options
author | Jim Hahn <jrh3@att.com> | 2021-06-04 13:22:49 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-06-04 13:24:59 -0400 |
commit | fe3e91c55264ba67b5130b9841e30b634ac157a6 (patch) | |
tree | e2b5f845fd8aa191a6fadee3a0affaf568ae2580 /csit/api/plans | |
parent | 8f44cb7dc7737433324083c0c307bf954d535200 (diff) |
Don't use pip3 wrapper script
The pip3 script generates a warning saying to use "python3 -m pip"
instead. Modified the code as such.
Issue-ID: POLICY-3155
Change-Id: I852583bea88b6d4b969a1aba20e7b9193fa24732
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'csit/api/plans')
-rw-r--r-- | csit/api/plans/setup.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csit/api/plans/setup.sh b/csit/api/plans/setup.sh index 28d08b75..d20540d9 100644 --- a/csit/api/plans/setup.sh +++ b/csit/api/plans/setup.sh @@ -22,9 +22,9 @@ source ${SCRIPTS}/get-branch-mariadb.sh echo "Uninstall docker-py and reinstall docker." -pip3 uninstall -y docker-py -pip3 uninstall -y docker -pip3 install -U docker +python3 -m pip uninstall -y docker-py +python3 -m pip uninstall -y docker +python3 -m pip install -U docker sudo apt-get -y install libxml2-utils |