From e727dd56821231677e398133a3f991dcc3931ff4 Mon Sep 17 00:00:00 2001 From: Witek Bedyk Date: Mon, 27 Jan 2020 16:00:12 +0100 Subject: [PATCH] Remove conflicting packages in Ubuntu Following packages conflict with pip installed versions: * httplib2 * pyasn1-modules Change-Id: Ic4f70f839765e67394509cc543560aac7f50e287 --- tools/fixup_stuff.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/fixup_stuff.sh b/tools/fixup_stuff.sh index a5c1667518..ae555d5861 100755 --- a/tools/fixup_stuff.sh +++ b/tools/fixup_stuff.sh @@ -79,6 +79,8 @@ function fixup_ubuntu { # manifest of what to remove. However, in most cases, simply # overwriting works. So this hacks around those packages that # have been dragged in by some other system dependency + sudo rm -f /usr/lib/python3/dist-packages/httplib2-*.egg-info + sudo rm -f /usr/lib/python3/dist-packages/pyasn1_modules-*.egg-info sudo rm -f /usr/lib/python3/dist-packages/PyYAML-*.egg-info }